3.6.9.A final variable can't have its value changed after initialization.
public class MainClass { public static void main(String[] argv) { final int i = 9;
i = 0;
System.out.println();
}
}
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The final local variable i cannot be assigned. It must be blank and not using a compound assignment
at MainClass.main(MainClass.java:4)