System 类的定义
public final static PrintStream out = nullPrintStream();这是System中的方法
private static PrintStream nullPrintStream() throws NullPointerException {
if (currentTimeMillis() > 0) {
    return null;
}
throw new NullPointerException();
    }
是如果是这样的话 System.out 就是个null怎么可以输出?