为什么类级别属性适用于 Null
我认为以下内容会抛出 NullPointerException
class N {
static int i;
public static void main( String ... args ) {
System.out.println( ((N)null).i );
}
}
但事实并非如此。为什么?
I would think the following would throw NullPointerException
class N {
static int i;
public static void main( String ... args ) {
System.out.println( ((N)null).i );
}
}
But it doesn't. Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为
i
是静态(类级别)成员。它是为阶级而存在的,为阶级的每一个对象而存在。所以它确实不需要引用对象,因此这部分((N)null)
实际上被忽略,除了类型推断。它可以而且应该被Ni
取代。Because
i
is static (class level) member. It exists for class, for every object of it. So it really doesn't require reference to object, so this part((N)null)
is actually ignored, except for type inference. It could and should be replaced withN.i
.