检查变量是否具有给定集合中的任何值
如何检查一个条件是否传递多个值?
示例:
if(number == 1,2,3)
我知道逗号不起作用。
How can I check if a condition passes multiple values?
Example:
if(number == 1,2,3)
I know that commas don't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
如果您使用 PHP,那么假设您的数字列表是一个数组,
那么对于任何元素,您可以使用
函数结构:
希望有帮助。
If you are using PHP, then suppose your list of numbers is an array
then for any element, you can use
Function structure:
Hope that helps.
什么语言?
例如,在 VB.NET 中使用 OR,在 C# 中使用 ||
What language?
For example in VB.NET you use the word OR, and in C# you use ||
由于您没有指定语言,我添加了一个 Python 解决方案:
Since you specify no language I add a Python solution:
在 T-SQL 中,您可以使用 IN 运算符:
如果您使用的是集合,则可能有一个 contains 运算符,可以通过另一种方式来执行此操作。
在 C# 中,另一种可能更容易添加值的方法:
In T-SQL you can use the IN operator:
If you are using a collection there may be a contains operator for another way to do this.
In C# for another way that may be easier to add values:
我将假设使用 C 风格语言,这里是 IF AND OR 逻辑的快速入门:
因此您可以看到如何将这些检查链接在一起以创建一些相当复杂的逻辑。
I'll assume a C-Style language, here's a quick primer on IF AND OR logic:
So you can see how you can chain these checks together to create some pretty complex logic.
对于整数列表:
For a list of integers:
在 Java 中,有包装原始变量的对象(Integer 表示 int,Long 表示 long 等)。如果您希望比较大量完整数字(整数)之间的值,您可以做的是启动一堆 Integer 对象,将它们填充到可迭代对象(例如 ArrayList)中,迭代它们并进行比较。
类似于:
当然,对于一些值来说,这可能有点笨拙,但如果您想与很多值进行比较,它会很好地工作。
另一种选择是使用 java Sets,您可以放置很多不同的值(集合会对您的输入进行排序,这是一个优点),然后调用 .contains(Object) 方法来定位相等性。
In Java you have objects that wrap primitive variables (Integer for int, Long for long, etc). if you look to compare values between a lot of complete numbers (ints), what you can do is initiate a bunch of Integer objects, stuff them inside an iterable such as an ArrayList, iterate over them and compare.
something like:
of course for a few values this may be a bit unwieldy, but if you want to compare against a lot of values, it'll work nicely.
Another option is to use java Sets, you can place a lot of different values (the collection will sort your input, which is a plus) and then invoke the
.contains(Object)
method to locate equality.