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

I was implementing a stack using the Delphi TStack from Generics.Collections (under Delphi XE) and noticed that when I call pop, the popped object gets freed which doesn't seem to make sense to me as I cannot now use the popped object. Instead I found I could use Extract which seems to work. My question is, is there any way I can use pop instead as it aids readability of the code. Is there some way to stop it from freeing the popped object?

As a side note, I thought of using TObjectStack as that allows me to control who owns the objects but then I discovered that the TObjectStack pop is a method that doesn't actually return what was popped so it's not very useful.

share|improve this question
1  
Could you show us a bit of your code? This code works as expected: Stack := TStack<TStringList>.Create; Stack.Push(TStringList.Create); Stack.Peek.Add(''); Caption := IntToStr(Stack.Pop.Count); – MBo Aug 29 '12 at 4:24
I traced the code directly into the rtl source and observed my object being freed in the notify call. Extract doesn't do that. I will set up a simple example to see if the same thing happens and report back. Did you try popping the tstringlist off the stack and check if it was still a valid object? – rhody Aug 29 '12 at 4:47
Yes, I've checked that object is not nil and it's contents is valid. – MBo Aug 29 '12 at 5:19
are you sure ? in my XE2 all it does is procedure TStack<T>.Notify(const Item: T; Action: TCollectionNotification); begin if Assigned(FOnNotify) then FOnNotify(Self, Item, Action); end; So it only can free it if you do it yourself in your event handler. Are you having List of Objects or List of Interfaces ? Maybe you could use Spring4D stack then ? – Arioch 'The Aug 29 '12 at 5:50
The reason why TObjectStack<T>.Pop is not a function is just because the popped object is freed inside Notify (use Peek/Pop or Extract). But I cannot see this behaviour in a simple TStack<T>, unless someone implemented it in the OnNotify event. – Uwe Raabe Aug 29 '12 at 7:22
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.