Following two cases seem to work:
public class A {
private class B {
public static final String str = "str";
}
}
public class A {
private static class B {
public static final String str = new String("str");
}
}
But Following gives an error as specified in comment:
public class A {
private class B {
//The field str cannot be declared static;
//static fields can only be declared in static or top level types
public static final String str = new String("str");
}
}
Why it is allowed in first two cases and why it is causing issue in last one?