如何检查参数是否为空

发布于 2025-01-06 01:38:13 字数 200 浏览 0 评论 0原文

我正在尝试测试 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

岁月静好 2025-01-13 01:38:13

在 Java 中,您可以与 null 值进行比较。执行此操作的标准方法如下:

String s = null;
if(s == null)
{  
    //handle null
}  

通常,在现实世界中抛出 NPE 是一种糟糕的做法。

In Java you can compare to the value null. The standard way to do this is as follows:

String s = null;
if(s == null)
{  
    //handle null
}  

Typically throwing an NPE is a poor practice in the real world.

So要识趣 2025-01-13 01:38:13

按照 Java 字面意义使用句柄

Foo foo = bar.couldReturnNull();
try {
   foo.doSomething();
} catch (NullPointerException e) {
   System.out.println("bar.couldReturnNull() returned null");
   throw new NullPointerException();
}

To use handle in the Java literal sense of the word

Foo foo = bar.couldReturnNull();
try {
   foo.doSomething();
} catch (NullPointerException e) {
   System.out.println("bar.couldReturnNull() returned null");
   throw new NullPointerException();
}
因为看清所以看轻 2025-01-13 01:38:13

你没有明确地说,但由于 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文