爪哇。util。哈希集。contains()方法用于检查哈希集中是否存在特定元素。所以基本上它是用来检查一个集合是否包含任何特定的元素。
null
语法:
Hash_Set.contains(Object element)
参数: 参数 要素 属于哈希集的类型。这是需要测试的元素,如果它是否存在于集合中。
返回值: 如果集合中存在元素,则该方法返回true,否则返回False。
下面的程序演示了Java。util。哈希集。contains()方法:
// Java code to illustrate HashSet.contains() method import java.io.*; import java.util.HashSet; public class HashSetDemo { public static void main(String args[]) { // Creating an empty HashSet HashSet<String> set = new HashSet<String>(); // Using add() method to add elements into the Set set.add( "Welcome" ); set.add( "To" ); set.add( "Geeks" ); set.add( "4" ); set.add( "Geeks" ); // Displaying the HashSet System.out.println( "HashSet: " + set); // Check for "Geeks" in the set System.out.println( "Does the Set contains 'Geeks'? " + set.contains( "Geeks" )); // Check for "4" in the set System.out.println( "Does the Set contains '4'? " + set.contains( "4" )); // Check if the Set contains "No" System.out.println( "Does the Set contains 'No'? " + set.contains( "No" )); } } |
输出:
HashSet: [4, Geeks, Welcome, To] Does the Set contains 'Geeks'? true Does the Set contains '4'? true Does the Set contains 'No'? false
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END