What is an in-place constructor in C++?

Viewed 43428

Possible Duplicate:
C++'s “placement new”

What is an in-place constructor in C++?

e.g. Datatype *x = new(y) Datatype();

6 Answers
Related