位置:首页 > Java技术 > Java.util包 > java.util.HashSet.contains()方法实例

java.util.HashSet.contains()方法实例

contains(Object o) 方法用于返回“true”,如果此set包含指定的元素。

声明

以下是java.util.HashSet.contains()方法的声明。

public boolean contains(Object o)

参数

  • o--这是其存在于本集将被测试的元素。

返回值

该方法调用返回true,如果此set包含指定的元素。

异常

  • NA

例子

下面的例子显示java.util.HashSet.contains()方法的使用

package com.yiibai;

import java.util.*;

public class HashSetDemo {
   public static void main(String args[]) {
      // create hash set
      HashSet <String> newset = new HashSet <String>();
            
      // populate hash set
      newset.add("Learning"); 
      newset.add("Easy");
      newset.add("Simply");  
      
      // check the existence of element
      boolean exist=newset.contains("Simply");
         
      System.out.println("Is the element 'Simply' exists: "+ exist);
   }    
}

现在编译和运行上面的代码示例,将产生以下结果。

Is the element 'Simply' exists: true