📜  Java中的HashSet size()方法

📅  最后修改于: 2022-05-13 01:54:51.048000             🧑  作者: Mango

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 set = new HashSet();
  
        // 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