Say we have the following classes:
class DoubleOhSeven {
public static void doSomethingClassy();
public static void neverDoThisClassy();
}
class Dude {
public void doSomething();
public void neverDoThis();
}
public class Party {
public static void main(String[] args){
DoubleOhSeven.doSomething();
Dude guy = new Dude;
guy.doSomething();
}
}
Of course, all the methods will be compiled into their respective .class
: do the unused static/instance methods occupy memory at run time? What about unused inherited or imported methods?
The unused methods are still there occupying memory as part of the class / object, even if they're not directly called.
If they were optimised away, then that would make reflective calls on these methods impossible.
One could argue that an optimisation could be generated that only stored the method stub in memory, and garbage collected the method contents (which would then be re-fetched from the class file if a call was made.) However, I'm not aware of a VM which does this, and it would be hard to justify due to the likely minimal gains in memory and tradeoff in speed whenever such a method was called.
Unused inherited methods would be exactly the same.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With