java集合Collection操作

Collection allCollections = new ArrayList();
//集合里添加数据                         
allCollections.add("testName");
//判断即合理是否包含某特定的数据
if (allCollections.contains("testName")) {
    System.out.println("包含了testName");                       
}else{
    System.out.println("没包含了testName");   
}

 

posted @ 2023-01-03 16:42  万笑佛  阅读(16)  评论(0编辑  收藏  举报