Java TreeSet isEmpty()方法

java.util.TreeSet.isEmpty() 如果集合不包含任何元素,则返回true。

1 语法

public boolean isEmpty()

2 参数

3 返回值

如果此集合不包含任何元素,则方法调用返回true。

4 示例 

package com.yiidian;

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

public class Demo {
    public static void main(String[] args) {

        // creating a TreeSet
        TreeSet <Integer>treeadd = new TreeSet<Integer>();

        // checking tree set
        System.out.println("Is the tree set empty: "+treeadd.isEmpty());

        // adding elements in the tree set
        System.out.println("Adding elements in the tree set");
        treeadd.add(12);
        treeadd.add(11);
        treeadd.add(16);
        treeadd.add(15);

        // checking tree set again
        System.out.println("Is the tree set empty: "+treeadd.isEmpty());
    }
}

输出结果为:

Is the tree set empty: true
Adding elements in the tree set
Is the tree set empty: false

热门文章

优秀文章