Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
public class Main
{
   public static void main(String []ar)
   {
      A m = new A();
      System.out.println(m.getNull().getValue());
   }
}

class A
{
   A getNull()
   {
      return null;
   }

   static int getValue()
   {
      return 1;
   }
}

I came across this question in an SCJP book. The code prints out 1 instead of an NPE as would be expected. Could somebody please explain the reason for the same?

share|improve this question

5 Answers

up vote 17 down vote accepted

It behaves as it should according to the Java Language Specification:

a null reference may be used to access a class (static) variable without causing an exception.

share|improve this answer

Basically you're calling a static method as if it were an instance method. That just gets resolved to a static method call, so it's as if you'd written:

A m = new A();
m.getNull();
System.out.println(A.getValue());

IMO the fact that your code is legal at all is a design flaw in Java. It allows you to write very misleading code, with Thread.sleep as an example I always use:

Thread thread = new Thread(someRunnable);
thread.start();
thread.sleep(1000);

Which thread does that send to sleep? The current one, "of course"...

share|improve this answer

Static method calls are resolved at compile time. The Compiler sees that getNull() has a return value of type A which has a static getValue() method (and no instance method of the same name), so in the bytecode, the actual return value of getNull() is ignored and A.getValue() is called.

share|improve this answer

getNull function returns an A object. getValue is declared as static, and just needs class_name to function, as in A.getValue(). Because getNull returns (in fact) an A object...you will get 1

share|improve this answer

System.out.println(m.getNull().getValue()); this line of code is same as System.out.println(A.getValue());

as because getValue() method is static and and all static call initiate at compile time in java. so it does not produce any error once you make getValue() in non static this will produce error as because it will be called at run time

share|improve this answer
1  
This is incorrect, m.getNull() does get called. See Jon's answer. – assylias Apr 10 '12 at 12:14
m.getNull() will be called only if getNull is not static. which i mentioned earlier. – Subhrajyoti Majumder Apr 16 '12 at 5:34
1  
What I meant is that System.out.println(m.getNull().getValue()); is not equivalent to System.out.println(A.getValue());. It is equivalent to m.getNull(); System.out.println(A.getValue());. – assylias Apr 16 '12 at 6:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.