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.