What is the right method to delete all the memory allocated here?

  const char* charString = "Hello, World";
  void *mem = ::operator new(sizeof(Buffer) + strlen(charString) + 1);
  Buffer* buf = new(mem) Buffer(strlen(charString));

  delete (char*)buf;

OR

  const char* charString = "Hello, World";
  void *mem = ::operator new(sizeof(Buffer) + strlen(charString) + 1);
  Buffer* buf = new(mem) Buffer(strlen(charString));

  delete buf;

or are they both same?

link|improve this question

2  
Although this is a perfectly valid question, a much easier way to do this would be to just overload operator new and operator delete inside of Buffer to allocate extra space, then to write something like new (strlen(charString) + 1) Buffer; – templatetypedef Jul 21 '11 at 23:33
feedback

2 Answers

up vote 11 down vote accepted

The correct method is:

buf->~Buffer();
::operator delete(mem);

You can only delete with the delete operator what you received from the new operator. If you directly call the operator new function, you must also directly call the operator delete function, and must manually call the destructor as well.

link|improve this answer
1  
Actually should be ::operator delete(mem); -- while (void *)buf will be the same as mem on most implementations, its not guarenteed to be the same unless Buffer is a POD type – Chris Dodd Jul 21 '11 at 23:51
@bdonlan: if Buffer does not own any resource(heap), does "delete buf" leak memory? The destructor does gets called here, but does it free only "sizeof(buf)" memory? – Vink Jul 22 '11 at 0:51
delete buf is undefined behavior. The delete-expression operator destroys a most derived object (1.8) or array created by a new-expression.. Since ::operator new is not a new-expression, you have a constraint violation, and behavior is therefore not defined. – bdonlan Jul 22 '11 at 1:32
feedback

There are two separate notions in C++:

  1. The new/delete operators.

  2. New/Delete expressions.

The operators allocate and deallocate memory. The new expression constructs objects. The delete expression sometimes destroys an object and calls the operator.

Why "sometimes"? Because it depends on the expression. The naked, global new first calls operator-new to allocate memory and then constructs the object; the global delete calls the destructor and deallocates the memory. But all other overloads of new and delete are different:

  • An overloaded new expression calls an overloaded new operator to allocate memory and then proceeds to construct the object.
  • However, there is no such thing as an overloaded delete expression, in particular there is no "placement-delete": Instead, you have to call the destructor manually.

New/Delete operators still have to be overloaded in matching pairs, because the matching delete operator is called when an object constructor throws an exception. However, there is no automatic way to invoke the destructor for an object that has been allocated with an overloaded new operator, so you have to do that yourself.

As the first and most basic example, consider the placement-new operator, which is mandated to take the form void * operator new (size_t, void * p) throw() { return p; }. The matching delete operator is thus mandated to do nothing: void operator delete (void *, void *) throw() { }. Usage:

void * p = ::operator new(5); // allocate only!
T * q = new (p) T();          // construct
q->~T();                      // deconstruct: YOUR responsibility
// delete (p) q;   <-- does not exist!! It would invoke the following line:
::operator delete(p, q);      // does nothing!
::operator delete(q);         // deallocate
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.