Hacker News new | ask | show | jobs
by gpderetta 1576 days ago
FWIW, constructors do not "create" (I assume you mean allocate) memory. That's the job of operator new. A constructor, given a block of untyped memory, will construct an object in it.
1 comments

Right.

Been a long time.

I would still expect a constructor to return. How can you tell if it failed?