Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Say I have the following:

Foo* foo = new Foo(bar);

//later on
*foo = Foo(anotherBar);

Since foo was allocated on the heap does this cause problems or will the memory from the temporary Foo be copied into the address of foo on the heap?

Thanks

share|improve this question

5 Answers

up vote 10 down vote accepted

*foo = Foo(anotherBar); is no different than a regular assignment to an object of Foo type. *foo returns an lvalue of type Foo, and you are assigning to it.

Short answer: it won't cause problems, the temporary will be copied into the heap Foo object pointed by foo.

share|improve this answer
9  
You still need to delete foo later on. And we're assuming Foo's assignment operator is implemented correctly and frees any resources the original object may be managing. – Praetorian Sep 14 '11 at 1:45
... unless your assignment operator leaks data ... – bitmask Sep 14 '11 at 1:50
...or Foo overrides the new operator in a weird way or... or... or so many other things that should be considered in C++ – K-ballo Sep 14 '11 at 1:56

As long as you remember to delete foo at some point, that will not cause memory leaks.

share|improve this answer

If you can't be sure that the assignment operator will do the right thing, you could consider manual deletion and reconstruction without releasing the memory:

foo->~Foo();
foo = new (foo) Foo(anotherBar);

I would certainly not recommend this, and it's non-intuitive and inelegant, but I thought I put it out there just in case someone really wanted to avoid the deallocation and reallocation brought about by delete and a separate new.

Avoiding new altogether in favour of resource-managing containers is by far preferable, of course.

share|improve this answer

If Foo allocates anything on the heap, it won't be deallocated, as the first instance's destructor will not be called.

share|improve this answer
Do you mean destructor instead of constructor? If it has a destructor the C++ rule of three suggests it ought to also have an assignment operator too because of precisely that. – Flexo Sep 14 '11 at 14:30
bluh? yes, that's what i meant! – mkb Sep 15 '11 at 0:47

2 ojects are being created at runtime using the same pointer. When it points to 2nd memory location hence we have no way to access the first object inorder to free it back to heap, hence mem leak.

share|improve this answer
This is incorrect. The second object created is a temporary, not allocated via new. The first object is being dereferenced, so the assignment is not a pointer assignment. The address the pointer points to does not get changed – Flexo Sep 14 '11 at 14:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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