如何检查参数是否为空
我正在尝试测试 null 参数,但您无法将对象与 null 进行比较。
以下是死代码:
} else if(x == null){
throw new NullPointerException("Parameter is null");
}
如何重写它以获得所需的效果?
I'm trying to test for null parameters but you cannot compare an object to null.
The following is dead code:
} else if(x == null){
throw new NullPointerException("Parameter is null");
}
How do I rewrite it to gain the desired effect?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Java 中,您可以与 null 值进行比较。执行此操作的标准方法如下:
通常,在现实世界中抛出 NPE 是一种糟糕的做法。
In Java you can compare to the value null. The standard way to do this is as follows:
Typically throwing an NPE is a poor practice in the real world.
按照 Java 字面意义使用句柄
To use handle in the Java literal sense of the word
你没有明确地说,但由于 NullPointerException,这看起来像 Java。是的,您可以将对象引用与 null 进行比较,因此这段代码没问题。您可能会将其与 SQL 混淆,其中没有任何内容与 null 进行比较。
You don't say explicitly, but this looks like Java because of the NullPointerException. Yes, you can compare an object reference to null, and so this code is fine. You might be mixing it up with SQL, where nothing compares equal to null.