static fields (or static methods) in Java are associated with their respective classes rather than the objects of those classes. The following code attempts to invoke a static field on a null reference.
public class Main
{
private static final int value = 10;
public Main getNull()
{
return null;
}
public static void main(String[] args)
{
Main main=new Main();
System.out.println("value = "+main.getNull().value);
}
}
Although main.getNull() returns null, it works and displays value = 10. How does this code work?

Main main = null; main.getNull().value. – Marko Topolnik Jul 20 '12 at 15:24new Thread[]{}[-1].sleep(10);where sleep() is a static method. This used to succeed on some older Java versions. – hertzsprung Aug 5 '12 at 22:33