I\'m always confused between static and final keywords in java.
static
final
How are they different ?
static means there is only one copy of the variable in memory shared by all instances of the class.
The final keyword just means the value can't be changed. Without final, any object can change the value of the variable.