fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. A a = new A();
  6. System.out.println(a.x);
  7. a = null;
  8. System.out.println(a.x); // though it makes sense for an NPE
  9. }
  10. }
  11.  
  12. class A
  13. {
  14. public static int x = 8;
  15. }
Success #stdin #stdout 0.08s 380224KB
stdin
Standard input is empty
stdout
8
8