4 lines
116 B
Java
4 lines
116 B
Java
final int immutableInt = 4;
|
|
int mutableInt = 4;
|
|
mutableInt = 6; //this is fine
|
|
immutableInt = 6; //this is an error
|