In java, say I have the following
==fileA.java== class A { public static final int SIZE = 100; }
Then in another file I use this valu
You can keep the constant from being compiled into B, by doing
class A { public static final int SIZE; static { SIZE = 100; } }