Tagged Questions

26
votes
11answers
1k views

malloc & placement new vs. new

I've been looking into this for the past few days, and so far I haven't really found anything convincing other than dogmatic arguments or appeals to tradition (i.e. "it's the C++ way!"). If I'm ...
12
votes
5answers
354 views

What is this second new?

What is the second line? (Seen while answering another question.) int * x = new int [1] ; int * y = new (x) int; After the second line x and y have the same value (point to a same place). What's ...
9
votes
13answers
2k views

What are uses of the C++ construct “placement new”?

I just learned about the C++ construct called "placement new". It allows you to exactly control where a pointer points to in memory. It looks like this: #include <new> // Must ...
8
votes
2answers
83 views

Does casting a pointer to “void*” have any effect when placement new is called?

I'm reviewing code of a custom container and some portions of it create elements like this: ::new( (void*)&buffer[index] ) CStoredType( other ); and some do like this: ::new( ...
6
votes
4answers
134 views

How to delete object constructed via placement new operator?

char * buf = new char[sizeof(T)]; new (buf) T; T * t = (T *)buf; //code... //here I should destruct *t but as it is argument of template and can be //instantiated via basic types as well (say int) so ...
5
votes
2answers
233 views

Unusual use of new in historical code. What does it mean?

I am just porting some old code: #define NewArrayOnHeap(TYPE, COUNT, HEAP, NEWPTR, ERROR) \ ((*(NEWPTR) = new ( #TYPE "[" #COUNT "]", __alignof(TYPE), (HEAP), &hr, (ERROR)) TYPE[COUNT] ), hr) ...
4
votes
5answers
135 views

Can a call delete on the pointer which is allocated with the placement new?

Can we call delete on the pointer which is allocated with the placement new? If no then why? Please explain in detail. EDIT1: I know that there is no placement delete. But I wonder why just delete ...
3
votes
1answer
556 views

Placement new and non-default constructors

Can I call the C++ placement new on constructors with parameters? I am implementing a custom allocator and want to avoid having to move functionality from non-default constructors into an init ...
2
votes
2answers
407 views

How does operator overloading (especially 'new') arity work?

I've never quite understood how the argument lists for operator overloading are determined in a systematic way, and I'm particularly confused by a problem I have now. When you overload a unary ...