使用示例在Java中设置 size() 方法
Java.util.Set.size() 方法用于获取Set 的大小或Set 中存在的元素数量。
句法:
int size()
参数:此方法不带任何参数。
返回值:该方法返回 Set 中存在的元素的大小或数量。
下面的程序说明了Java.util.Set.size() 方法:
// Java code to illustrate Set.size() method
import java.util.*;
public class SetDemo {
public static void main(String args[])
{
// Creating an empty Set
Set 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 Set
System.out.println("Set: " + set);
// Displaying the size of the Set
System.out.println("The size of the set is: " + set.size());
}
}
输出:
Set: [4, Geeks, Welcome, To]
The size of the set is: 4
参考:https: Java/util/Set.html#size()