当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.util.HashSet.contains()用法及代码示例



描述

这个contains(Object o)如果此集合包含指定的元素,则使用方法返回 'true'。

声明

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

public boolean contains(Object o)

参数

o─ 这是要测试其在该集合中是否存在的元素。

返回值

如果此集合包含指定的元素,则方法调用返回 'true'。

异常

NA

示例

下面的例子展示了 java.util.HashSet.contains() 的用法

package com.tutorialspoint;

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

相关用法


注:本文由纯净天空筛选整理自 java.util.HashSet.contains() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。