Posted By:
WarnerJan_Veldhuis
Posted On:
Thursday, March 23, 2006 08:00 AM
- static: the variable becomes a class variable, instead of an instance variable. This means all the instances share the same variable
- final: that variable cannot change:
final int i= 5;
i = 6; //<-- error