如何在 contains() 中添加范围?
就像上面的问题一样,我需要查找列表(具体来说是 ArrayList)是否包含一定范围的数字,例如 1 到 7。如何在 if 条件中包含这个范围,如下所示 if(list.contains (范围))
?
Like the question at the above, I need to find whether a list (ArrayList to be specific) contains a certain range of numbers like 1 to 7. How can I include this range in if condition like this if(list.contains(range))
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建其他范围元素的列表。
然后你可以使用 Collections.indexOfSubList(MainList, subList)
它将返回列表的起始索引。如果不存在,它将返回-1。
输出是
You can make a list of another range elements.
Then you can you use Collections.indexOfSubList(MainList, subList)
It will return the starting index of the list. In case it is not present , it will return -1.
and the output is