Java HashSet size() 方法

size() 用于获取HashSet中的元素个数。

1 语法

public int size()  

2 参数

3 返回值

返回获取HashSet中的元素个数。

4 HashSet size()示例1

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java HashSet.size()方法的例子
 */
import java.util.*;

public class Demo {
    public static void main(String[] args) {
        HashSet<String> set=new HashSet<String>();
        set.add("Eric");
        set.add("Jack");
        set.add("Mark");
        set.add("Rose");
        //打印HashSet
        System.out.println("HashSet: " + set);
        //打印HashSet的元素个数
        System.out.println("The size of the set is: " + set.size());
    }
}

输出结果为:

HashSet: [Eric, Mark, Rose, Jack]
The size of the set is: 4

5 HashSet size()示例2

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java HashSet.size()方法的例子
 */
import java.util.*;

public class Demo {

    public static void main(String[] args) {
        HashSet <Integer> hashSetObject = new HashSet <>();
        hashSetObject.add(45);
        hashSetObject.add(-67);
        hashSetObject.add(98);
        int s = hashSetObject.size();
        System.out.println("Size of HashSet is: "+s);
    }
}

输出结果为:

Size of HashSet is: 3

6 HashSet size()示例3

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java HashSet.size()方法的例子
 */
import java.util.*;

public class Demo {

    public static void main(String[] args) {
        //初始化HashSet
        HashSet studentSet = init();
        //Print the size of the set
        int size = studentSet.size();
        System.out.println("Size of student database is: "+size);
    }
    private static HashSet init() {
        //初始化HashSet
        HashSet<String> studentSet = new HashSet<>();
        //添加元素到HashSet
        studentSet.add("Eric");
        studentSet.add("Jack");
        studentSet.add("Mark");
        studentSet.add("Rose");
        return studentSet;
    }
}

输出结果为:

Size of student database is: 4

 

热门文章

优秀文章