Are static methods in Java always resolved at compile time? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T23:28:59Zhttp://stackoverflow.com/feeds/question/1039229http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1039229/are-static-methods-in-java-always-resolved-at-compile-time3Are static methods in Java always resolved at compile time?Joao Luis2009-06-24T15:50:02Z2009-06-24T16:43:29Z
<p>Are static methods in Java always resolved at compile time?</p>
http://stackoverflow.com/questions/1039229/are-static-methods-in-java-always-resolved-at-compile-time/1039243#10392432Answer by dfa for Are static methods in Java always resolved at compile time?dfa2009-06-24T15:53:09Z2009-06-24T16:29:49Z<p>short answer: <strong>yes</strong></p>
<p>I wasn't able to find the exact section of the <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/j3TOC.html" rel="nofollow">Java Language Specification</a>. Please help. :)</p>
http://stackoverflow.com/questions/1039229/are-static-methods-in-java-always-resolved-at-compile-time/1039270#10392704Answer by Tom Hawtin - tackline for Are static methods in Java always resolved at compile time?Tom Hawtin - tackline2009-06-24T15:56:55Z2009-06-24T16:20:09Z<p>Yes, but if the static method has been removed by runtime the matching method in the base class will be called (name and signature must exactly match the original method from compile time, and the method must be accessible by JVM spec rules).</p>
<p>To clarify, consider calling code:</p>
<pre><code> Derived.fn();
</code></pre>
<p>And the following called code:</p>
<pre><code>class Base {
public static void fn() {
System.err.println("Base");
}
}
class Derived extends Base {
public static void fn() {
System.err.println("Derived");
}
}
</code></pre>
<p>Prints <code>Derived</code>.</p>
<p>Now, I compile everything. Then recompile just Derived changed to:</p>
<pre><code>class Derived extends Base {
}
</code></pre>
<p>Prints <code>Base</code>.</p>
<p>Perhaps then I recompile just Derived changed to:</p>
<pre><code>class Derived {
}
</code></pre>
<p>Throws an error.</p>
http://stackoverflow.com/questions/1039229/are-static-methods-in-java-always-resolved-at-compile-time/1039290#10392904Answer by Rax Olgud for Are static methods in Java always resolved at compile time?Rax Olgud2009-06-24T16:00:17Z2009-06-24T16:22:00Z<p>Yes, it is thoroughly investigated and explained in this thread on Sun's forums: <a href="http://forums.sun.com/thread.jspa?threadID=5387520" rel="nofollow">New To Java - No late binding for static methods</a></p>
<p>Several quotes:</p>
<p>"When the compiler compiles that class it decides at compile time which exact method is called for each static method call (that's the big difference to non-static method calls: the exact method to be called is only decided at runtime in those cases)."</p>
<p>"Calling static methods only ever depends on the compile-time type on which it is called."</p>