Java Collections emptySet()

emptySet() 获取没有元素的Set。这些空集合本质上是不可变的。

1 语法

public static final <T> Set<T> emptySet()   

2 参数

3 返回值

返回一个不可变的空Set集合。

4 Collections emptySet()示例1

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Collections.emptySet的例子
 */
import java.util.*;

public class Demo {

    public static void main(String[] args) {
        //Create an empty Set
        Set<String> EmptySet = Collections.<String>emptySet();
        System.out.println("Empty Set: "+EmptySet);
    }
}

输出结果为:

Empty Set: []

5 Collections emptySet()示例2

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Collections.emptySet的例子
 */
import java.util.*;

public class Demo {

    public static void main(String[] args) {
        //Create an empty Set
        Set<String> EmptySet = Collections.emptySet();
        System.out.println("Created empty immutable Set: "+EmptySet);
        //Try to add elements
        EmptySet.add("A");
        EmptySet.add("B");
    }
}

输出结果为:

Exception in thread "main" java.lang.UnsupportedOperationException
	at java.util.AbstractCollection.add(AbstractCollection.java:262)
	at com.yiidian.Demo.main(Demo.java:18)
Created empty immutable Set: []

6 Collections emptySet()示例3

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Collections.emptySet的例子
 */
import java.util.*;

public class Demo {

    public static void main(String[] args) {
        //Create an empty Set
        Set<Integer> empSet = Collections.emptySet();
        empSet.add(1);
        empSet.add(2);
        System.out.println("Created empty immutable Set: "+empSet);
    }
}

输出结果为:

Exception in thread "main" java.lang.UnsupportedOperationException
	at java.util.AbstractCollection.add(AbstractCollection.java:262)
	at com.yiidian.Demo.main(Demo.java:16)

 

热门文章

优秀文章