How can I call a constructor on a memory region that is already allocated?
See Question&Answers more detail:osHow can I call a constructor on a memory region that is already allocated?
See Question&Answers more detail:osYou can use the placement new constructor, which takes an address.
Foo* foo = new (your_memory_address_here) Foo ();
Take a look at a more detailed explanation at the C++ FAQ lite or the MSDN. The only thing you need to make sure that the memory is properly aligned (malloc
is supposed to return memory that is properly aligned for anything, but beware of things like SSE which may need alignment to 16 bytes boundaries or so).