| Author |
Doubt in stack
|
Dhivya rajagopal
Ranch Hand
Joined: Dec 15, 2010
Posts: 42
|
|
hi, i read that object references will store in stack memory. The Java system must know, while it is creating the program, the exact lifetime of all the items that are stored on the stack. i can't understand this. can you please explain it. what are the items will store in the stack?
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32833
|
|
Not a “beginning” question, so I shall move it.
Who told you objects live on the stack? That sounds mistaken. There are a few short-lived objects which are created on the stack (in Java6+ only), but other objects live on the heap. There are copies of their references on the stack as local variables, but that probably doesn’t answer your question.
As for finding the age of objects, it is worth googling for Java garbage collection.
|
 |
 |
|
|
subject: Doubt in stack
|
|
|