怎么判断list集合中是否含有某个元素
展开全部
import java.util.*;
class AlgorithmsDemo {
public static void main(String args[]) {
List<Integer> ll = new LinkedList<Integer>();
ll.add(1);
ll.add(2);
ll.add(3);
Integer findValue=2;
if(ll.contains(findValue))
System.out.println("existed: " + findValue);
else System.out.println("not existed: " + findValue);
}
}
参考资料:
https://zhidao.baidu.com/question/940791012109483652.html
class AlgorithmsDemo {
public static void main(String args[]) {
List<Integer> ll = new LinkedList<Integer>();
ll.add(1);
ll.add(2);
ll.add(3);
Integer findValue=2;
if(ll.contains(findValue))
System.out.println("existed: " + findValue);
else System.out.println("not existed: " + findValue);
}
}
参考资料:
https://zhidao.baidu.com/question/940791012109483652.html
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询