i need some brief explanation about these types of data values.... just a little bit of understandable explanation about these...
for example
private static final int FIRST_NUMBER = 1; //this is a class constant
but the book that i've red says that if THIS constant variable declared as..
like this..
private final int FIRST_NUMBER = 1; //then this is an instance constant
every instances of the class will have the same value
i dont get this point...
just a little bit of understandalbe explanation.