Java中的 LinkedHashSet contains() 方法及示例
在Java中,LinkedHashSet 类包含称为contains()的方法,如果此 set 包含指定的元素,则该方法用于返回 true,否则返回 false。
句法:
public boolean contains(Object o)
参数:元素o作为要测试其在该集合中的存在的参数。
返回类型:布尔值,如果此集合包含指定元素,则为true 。
示例 1:
Java
// Java program to Illustrate contains() Method
// of LinkedHashSet class
// For String value
// Importing required classes
import java.util.*;
// Main class
public class GFG {
// Main driver method
public static void main(String[] argv) throws Exception
{
// Try block to check for exceptions
try {
// Creating an empty LinkedHashSet
// Declaring object of string type
LinkedHashSet linkset
= new LinkedHashSet();
// Populating above HashSet
linkset.add("A");
linkset.add("B");
linkset.add("C");
// Printing all elements of above LinkedHashSet
System.out.println("LinkedHashSet: " + linkset);
// Checking the existence of element
// using contains() method
boolean exist = linkset.contains("C");
// Printing boolean value if present or not
System.out.println("Is the element"
+ " 'C' present: " + exist);
}
// Catch block to check for exceptions
catch (NullPointerException e) {
// Display message if exception occurs
System.out.println("Exception thrown : " + e);
}
}
}
Java
// Java program to Illustrate contains() Method
// of LinkedHashSet class
// For Integer value
// Importing required classes
import java.util.*;
// Main class
public class GFG {
// Main driver method
public static void main(String[] argv) throws Exception
{
// Try block to check for exceptions
try {
// Creating an empty LinkedHashSet
// Declaring object of integer type
LinkedHashSet linkset
= new LinkedHashSet();
// Populating above HashSet
linkset.add(10);
linkset.add(20);
linkset.add(30);
// Printing all elements of above LinkedHashSet
System.out.println("LinkedHashSet: " + linkset);
// Checking the existence of element
// using contains() method
boolean exist = linkset.contains(25);
// Printing boolean value if present or not
System.out.println("Is the element"
+ " '25' present: " + exist);
}
// Catch block to check for exceptions
catch (NullPointerException e) {
// Display message if exception occurs
System.out.println("Exception thrown : " + e);
}
}
}
输出:
LinkedHashSet: [A, B, C]
Is the element 'C' present: true
示例 2:
Java
// Java program to Illustrate contains() Method
// of LinkedHashSet class
// For Integer value
// Importing required classes
import java.util.*;
// Main class
public class GFG {
// Main driver method
public static void main(String[] argv) throws Exception
{
// Try block to check for exceptions
try {
// Creating an empty LinkedHashSet
// Declaring object of integer type
LinkedHashSet linkset
= new LinkedHashSet();
// Populating above HashSet
linkset.add(10);
linkset.add(20);
linkset.add(30);
// Printing all elements of above LinkedHashSet
System.out.println("LinkedHashSet: " + linkset);
// Checking the existence of element
// using contains() method
boolean exist = linkset.contains(25);
// Printing boolean value if present or not
System.out.println("Is the element"
+ " '25' present: " + exist);
}
// Catch block to check for exceptions
catch (NullPointerException e) {
// Display message if exception occurs
System.out.println("Exception thrown : " + e);
}
}
}
输出:
LinkedHashSet: [10, 20, 30]
Is the element '25' present: false