public class Main {
public static void main(String[] args){
System.out.println(X.Y.Z);
}
}
class X {
static class Y {
static String Z = "Result 1";
}
static C Y = new C();
}
class C {
String Z = "Result 2";
}
Sometime output is "Result 1" and sometime output is "Result 2". Can you explain why?
I am using JDK 1.6_33.
Result 2every single time. – mellamokb Aug 31 '12 at 22:49Result 2every single time. – mellamokb Aug 31 '12 at 22:55