當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java HashSet size()用法及代碼示例


Java.util.HashSet.size()方法用於獲取HashSet的大小或HashSet中存在的元素數。

用法:

Hash_Set.size()

參數:此方法不帶任何參數。


返回值:該方法返回HashSet中存在的元素的大小或數量。

以下示例程序旨在說明Java.util.HashSet.size()方法:

// Java code to illustrate HashSet.size() method 
import java.util.*; 
import java.util.HashSet; 
  
public class HashSetDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty HashSet 
        HashSet<String> set = new HashSet<String>(); 
  
        // Use 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); 
  
        // Displaying the size of the HashSet 
        System.out.println("The size of the set is: " + set.size()); 
    } 
}
輸出:
HashSet: [4, Geeks, Welcome, To]
The size of the set is: 4


相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 HashSet size() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。