Is there any difference between final static int x = 1;
and static final int x=1
? In other words, will the java compiler represent x
in exactly same way in both the cases ?
EDIT: Is there any kind of precedence or priority the compiler has with regard to static and final?