检查用户是否至少输入了一项输入的最佳/最有效方法

发布于 2024-11-15 17:43:43 字数 454 浏览 1 评论 0原文

我正在尝试从函数中获取多个参数,并且正在检查至少其中一个参数是否不为空或为空。

现在我正在做这样的事情。

void foo(String a, String b, String c, String d, ... other strings){

//make sure at least one of the inputs are not null.
if(a!=null || b!=null || c!=null || d!=null ... more strings){
  //do something with the string
}

}

因此输入可以是 foo(null, null, null, "hey"); 但它不能是 foo(null, null, null, null);

我的问题是有没有更好的方法来做到这一点,而不是继续添加到 if 语句。我现在一片空白……谢谢

I am trying to take in multiple parameters from a function and im am checking if at least one of the parameters are not null or empty.

right now i am doing something like this.

void foo(String a, String b, String c, String d, ... other strings){

//make sure at least one of the inputs are not null.
if(a!=null || b!=null || c!=null || d!=null ... more strings){
  //do something with the string
}

}

so an input can be foo(null, null, null, "hey");
but it cannot be foo(null, null, null, null);

What my question is is there a better way to do this, rather than keep adding to the if statement. Im blanking out right now.... Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

叶落知秋 2024-11-22 17:43:43

使用 varags

   public static boolean atLeastOneEmpty(String firstString, String... strings){
      if(firstString == null || firstString.isEmpty())
         return true;

      for(String str : strings){
         if(str == null || str.isEmpty())
            return true;
      }
      return false;

    }

如果至少有一个字符串为空则返回 true

Use varags

   public static boolean atLeastOneEmpty(String firstString, String... strings){
      if(firstString == null || firstString.isEmpty())
         return true;

      for(String str : strings){
         if(str == null || str.isEmpty())
            return true;
      }
      return false;

    }

Returns true if at least one string is empty

情话已封尘 2024-11-22 17:43:43

有点晚了,但是从 Apache Commons Lange 3.11 开始,您可以使用该方法<一href="https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/ObjectUtils.html#anyNotNull-java.lang.Object...-" rel="nofollow noreferrer ">ObjectUtils.anyNotNull()

It is a bit late, but from Apache Commons Lange 3.11 you can use the method ObjectUtils.anyNotNull().

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