If I have an object O with a gigantic method f(), and I load 10000 examples of O into memory. Are 10000 examples of f() loaded into memory as well? If so, does that mean that I would save memory by making this function static if possible?

link|improve this question

Why do so many people seem to have this question? – Karl Knechtel Feb 17 '11 at 16:07
recommend an operating systems course, or something where you get to see how computers and computer programs work at a low level. – Suresh Sankar Feb 17 '11 at 16:10
feedback

4 Answers

up vote 7 down vote accepted

Instance Methods are loaded in to Method Area in JVM. it is loaded once , but there will be many stack for every call u make to f() , to keep track of there own local variable values.

link|improve this answer
1  
+1 for the note that calling will take up room on the stack. – corsiKa Feb 17 '11 at 16:06
1  
Let you know if you're wrong? If you're not sure, don't answer the question. – George Feb 17 '11 at 16:06
2  
It's important to note that the stack space for the method is only used DURING A CALL TO IT. There are not 10,000 pieces of stack in use at any time just because you have 10,000 instances created. – DJClayworth Feb 17 '11 at 16:16
@DJClayworth yes that is right. when a method is completed , stack space is removed.how about when doing recursion ? – Suresh Sankar Feb 17 '11 at 16:20
I might be wrong, but aren't classes loaded once per classloader chain, rather than once per JVM? So should methods: once per classloader chain – Puce Feb 17 '11 at 17:03
feedback

No. There is only one instance of the method loaded.

link|improve this answer
feedback

Instance method is just a template and is defined in a class (not in every instance). You wouldn't save memory by making it static.

link|improve this answer
feedback

No. Methods are not part of instances; they're part of classes. There would be no point in repeating the code for each instance (because it would never vary) so the implementation is, quite simply, smarter than that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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