位置:首頁 > 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