If I define a member variable inside static nested class in java like this:
public class Outer {
public static class StaticNestedClass {
private int mMember = 3;
}
}
mMember would be interpreted static because its class is static? What about static nested class members in java?
Thanks in advance.