Why can final constants in Java be overriden? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:12:28Z http://stackoverflow.com/feeds/question/205239 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/205239/why-can-final-constants-in-java-be-overriden 9 Why can final constants in Java be overriden? Yuval A 2008-10-15T15:43:32Z 2008-10-15T22:07:13Z <p>Consider the following interface in Java:</p> <pre><code>public interface I { public final String KEY = "a"; } </code></pre> <p>And the following class:</p> <pre><code>public class A implements I { public String KEY = "b"; public String getKey() { return KEY; } } </code></pre> <p>Why is it possible for class A to come along and override interface I's final constant?</p> <p>Try for yourself:</p> <pre><code>A a = new A(); String s = a.getKey(); // returns "b"!!! </code></pre> http://stackoverflow.com/questions/205239/why-can-final-constants-in-java-be-overriden/205249#205249 23 Answer by Bill K for Why can final constants in Java be overriden? Bill K 2008-10-15T15:46:07Z 2008-10-15T15:52:01Z <p>You are hiding it, it's a feature of "Scope". Any time you are in a smaller scope, you can redefine all the variables you like and the outer scope variables will be "Shadowed"</p> <p>By the way, you can scope it again if you like:</p> <pre><code>public class A implements I { public String KEY = "b"; public String getKey() { String KEY = "c"; return KEY; } } </code></pre> <p>Now KEY will return "c";</p> <p>Edited because the original sucked upon re-reading.</p> http://stackoverflow.com/questions/205239/why-can-final-constants-in-java-be-overriden/205268#205268 2 Answer by Steve B. for Why can final constants in Java be overriden? Steve B. 2008-10-15T15:52:02Z 2008-10-15T15:52:02Z <p>It looks like your class is simply hiding the variable, not overwriting it: </p> <pre><code>public class A implements I { public String KEY = "B"; public static void main(String args[]) { A t = new A(); System.out.println(t.KEY); System.out.println(((I) t).KEY); } } </code></pre> <p>This will print "B", and "A", as you found. You can even assign to it, as the A.KEY variable is not defined as final. </p> <pre><code> A.KEY="C" &lt;-- this compiles. </code></pre> <p>But - </p> <pre><code>public class C implements I{ public static void main (String args[]) { C t = new C(); c.KEY="V"; &lt;--- compiler error ! can't assign to final } } </code></pre> http://stackoverflow.com/questions/205239/why-can-final-constants-in-java-be-overriden/205292#205292 1 Answer by MetroidFan2002 for Why can final constants in Java be overriden? MetroidFan2002 2008-10-15T15:58:21Z 2008-10-15T15:58:21Z <p>Static fields and methods are attached to the class/interface declaring them (though interfaces cannot declare static methods as they are wholly abstract classes which need to be implemented).</p> <p>So, if you have an interface with a public static (vartype) (varname), that field is attached to that interface.</p> <p>If you have a class implement that interface, the compiler trick transforms (this.)varname into InterfaceName.varname. But, if your class redefines varname, a new constant named varname is attached to your class, and the compiler knows to now translate (this.)varname into NewClass.varname. The same applies for methods: if the new class does not re-define the method, (this.)methodName is translated into SuperClass.methodName, otherwise, (this.)methodName is translated into CurrentClass.methodName.</p> <p>This is why you will encounter the warning "x field/method should be accessed in a static way". The compiler is telling you that, although it may use the trick, it would prefer that you used ClassName.method/fieldName, because it is more explicit for readability purposes.</p> http://stackoverflow.com/questions/205239/why-can-final-constants-in-java-be-overriden/205358#205358 1 Answer by Jorn for Why can final constants in Java be overriden? Jorn 2008-10-15T16:14:19Z 2008-10-15T16:14:19Z <p>You should not access your constant in this way, use the static reference instead:</p> <pre><code>I.KEY //returns "a" B.KEY //returns "b" </code></pre> http://stackoverflow.com/questions/205239/why-can-final-constants-in-java-be-overriden/205427#205427 8 Answer by André for Why can final constants in Java be overriden? André 2008-10-15T16:31:34Z 2008-10-15T22:07:13Z <p>Despite the fact that you are shadowing the variable it's quite interesting to know that you can change final fields in java as you can read <a href="http://www.javaspecialists.co.za/archive/Issue096.html" rel="nofollow">here</a>.</p>