Tagged Questions

3
votes
1answer
522 views

POD class initialized with placement new default initialized?

If I initialize a POD class with placement new, can I assume that the memory will be default initialized (to zeros)? This resource clearly states that if you call the zero argument default constructor ...
1
vote
2answers
89 views

Is it recommendable to use placement new when constructing an POD-object from a dynamically created array?

Given any POD type, is it recommendable to do something like that: any_pod* p = new any_pod[n]; for (std::size_t i = 0; i < n; ++i) new (&p[i].member) other_pod(whatever);