Contact: aviboots(AT)netvision.net.il
41,379 questions
53,922 answers
573 users
public class MyClass { public static void main(String args[]) { final int n = 100; // n = 13; Error: You are allowed to initialize a final variable only once System.out.println(n); } } /* run: 100 */