检查用户是否至少输入了一项输入的最佳/最有效方法
我正在尝试从函数中获取多个参数,并且正在检查至少其中一个参数是否不为空或为空。
现在我正在做这样的事情。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 varags
如果至少有一个字符串为空则返回 true
Use varags
Returns true if at least one string is empty
有点晚了,但是从 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()
.