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?
| |||||
feedback
|
|
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. | |||||||||||||||||
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. | |||
|
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. | |||
|
feedback
|