vote up 1 vote down star

Ignoring programming style and design, is it "safe" to call delete on a variable allocated on the stack? i.e.

   int nAmount;
   delete &nAmount;

or

class sample
{
public:
    sample();
    ~sample() { delete &nAmount;}
    int nAmount;
}
flag
Why would you want to? – OJ Jan 14 '09 at 3:53
Note that your second example doesn't have to be on the stack. nAmount would be local to whatever memory sample exists in. – Shmoopty Jan 14 '09 at 4:33
About as safe as poking a sharp needle in your eye. – paxdiablo Jan 14 '09 at 5:46

6 Answers

vote up 25 vote down check

no. You must only call delete on things created by new.

EDIT: Expanding this a bit, for each malloc or calloc, there should be exactly one free. For each new there should be exactly one delete. For each new[] there should be exactly one delete[]. For each stack allocation, there should be nothing (the destructor is called automatically, where applicable). In general, you cannot mix and match any of these (e.g. no free-ing or delete[]-ing a new object).

link|flag
Thanks! My compiler didn't seg fault but I was definitely suspicious if it was legitimate. – unistudent Jan 14 '09 at 3:50
happy programming – Mr Fooz Jan 14 '09 at 3:56
In your edits, can we replace each "should" with "must". – Daniel Paull Jan 14 '09 at 5:15
"Should" is a better word. "Must" implies that the malloc/new/new[] will fail if the free/delete/delete[] is absent, which is not the case. The use of "exactly one" carries the implication I think you are going for. – Zooba Jan 14 '09 at 10:32
vote up 3 vote down

Well, let's try it:

jeremy@jeremy-desktop:~$ echo 'main() { int a; delete &a; }' > test.cpp
jeremy@jeremy-desktop:~$ g++ -o test test.cpp
jeremy@jeremy-desktop:~$ ./test
Segmentation fault

So apparently it is not safe at all.

link|flag
vote up 3 vote down

Keep in mind that when you allocate a block of memory using new (or malloc for that matter), the actual block of memory allocated will be larger than what you asked for. The memory block will also contain some bookkeeping information so that when you free the block, it can easily be put back into the free pool and possibly be coalesced with adjacent free blocks.

When you try to free any memory that you didn't receive from new, that bookkeeping information wont be there but the system will act like it is and the results are going to be unpredictable (usually bad).

link|flag
vote up 1 vote down

No, Memory allocated using new should be deleted using delete operator and that allocated using malloc should be deleted using free. And no need to deallocate the variable which are allocated on stack.

link|flag
vote up 0 vote down

here the memory is allocated using stack so no need to delete it exernally but if you have allcoted dynamically

like int *a=new int()

then you have to do delete a and not delete &a(a itself is a pointer), because the memory is allocated from free store.

link|flag

Your Answer

Get an OpenID
or

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