检查Java LinkedHashSet中是否存在特定元素
使用contains()方法检查LinkedHashSet中是否存在特定元素。
我们首先创建一个LinkedHashSet并添加一些元素-
LinkedHashSet<String> l = new LinkedHashSet<String>();
l.add(new String("1"));
l.add(new String("2"));
l.add(new String("3"));
l.add(new String("4"));
l.add(new String("5"));
l.add(new String("6"));
l.add(new String("7"));现在,检查它是否包含元素“5”-
l.contains("5")以下是检查LinkedHashSet中是否存在特定元素的示例-
示例
import java.util.*;
public class Demo {
public static void main(String[] args) {
LinkedHashSet<String> l = new LinkedHashSet<String>();
l.add(new String("1"));
l.add(new String("2"));
l.add(new String("3"));
l.add(new String("4"));
l.add(new String("5"));
l.add(new String("6"));
l.add(new String("7"));
System.out.println("LinkedHashSet elements...");
System.out.println(l);
System.out.println("Does 5 exist in the LinkedHashSet elements? "+l.contains("5"));
}
}输出结果
LinkedHashSet elements... [1, 2, 3, 4, 5, 6, 7] Does 5 exist in the LinkedHashSet elements? True
热门推荐
10 结婚多层蛋糕祝福语简短
11 18岁简短祝福语经典
12 中秋快乐祝福语简短的
13 女儿生日祝福语说说简短
14 晚儿子生日祝福语简短
15 初八祝福语简短语
16 女朋友考试祝福语简短
17 青春告白祖国简短祝福语
18 双节祝福语简短唯美