<< November 20, 2008 | Home | November 22, 2008 >>

Friday Java Quiz: Static Fields In Inner Classes

(Mario Aquino suggested this quiz.)

Q: Will the following Java source compile?

public class Outer {
    public class Inner {
        public static int ONE = 12;
    }
}

Strict rules: No actually running the compiler.