1The two really aren't similar.
2"STATIC" fields are fields that do not
3belong to any particular instance of a class.
4and there is only one copy of the variable in memory
5shared by all instances of the class.
6On the other hand
7"FINAL" The final keyword just means the value
8can't be changed. Without final, any object can
9change the value of the variable
1The two really aren't similar.
2"STATIC" fields are fields that do not
3belong to any particular instance of a class.
4and there is only one copy of the variable in memory
5shared by all instances of the class.
6On the other hand
7"FINAL" The final keyword just means the value
8can't be changed. Without final, any object can
9change the value of the variable
10
11