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

what happens in the memory when i create objects in a for loop.
How is the memory management works on these object.

share|improve this question
See this question for a recent discussion of these concerns. – Marko Topolnik Nov 26 '12 at 10:15
Memory mamanement works the same for all objects on the heap. They can be cleaned up when there is no long a string reference to them. – Peter Lawrey Nov 26 '12 at 10:47

closed as not constructive by Vikdor, Keppil, j0k, Marko Topolnik, Tom Seidel Nov 26 '12 at 10:18

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

All the objects in Java, scoped in the bracket and inner brackets. After exiting from the bracket, all objects go to Garbage Collection. For example variable x is renew after each iteration in this code:

for (int i = 0 ; i < 100 ; i++){
    Object x = new Object();
}
share|improve this answer
1  
Note that there is nothing in the specification that makes this true. It may or may not happen. The only thing that is guaranteed is that the objects will not be reachable after the whole method completes. – Marko Topolnik Nov 26 '12 at 10:14
Whether an object becomes unreachable on method termination depends on whether all references to it had lifetime limited to that method call. – Patricia Shanahan Nov 26 '12 at 12:30

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