Java EnumSet of()方法
java.util.EnumSet.of(E e) 用于创建最初包含指定元素的EnumSet。
1 语法
public static <E extends Enum<E>> EnumSet<E> of(E e)
2 参数
e:此集合最初要包含的元素。
3 返回值
返回最初包含指定元素的枚举集。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.EnumSet.of(E e)方法的例子
*/
import java.util.*;
public class Demo {
// create an enum
public enum Numbers {
ONE, TWO, THREE, FOUR, FIVE
};
public static void main(String[] args) {
// create a set
EnumSet<Numbers> set;
// add one element
set = EnumSet.of(Numbers.FIVE);
// print the set
System.out.println("Set:" + set);
// add another element which replaces the previous
set = EnumSet.of(Numbers.THREE);
// print the set. Notice that it has one element
System.out.println("Set:" + set);
}
}
输出结果为:
Set:[FIVE]
Set:[THREE]
热门文章
优秀文章