Java EnumSet of()方法
java.util.EnumSet.of(E first, E... rest) 方法创建最初包含指定元素的枚举集。
1 语法
public static <E extends Enum<E>> EnumSet<E> of(E first, E... rest)
2 参数
first:一个元素,该组最初要包含。
rest:集合最初要包含的其余元素。
3 返回值
返回最初包含指定元素的枚举集。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.EnumSet.of(E first, E... rest)方法的例子
*/
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 fake list that will be used like args
Numbers[] list = {Numbers.ONE, Numbers.THREE, Numbers.FOUR, Numbers.FIVE};
// call the fake main
main2(list);
}
// This is a fake main. This is used as an example
public static void main2(Numbers[] fakeargs) {
// create a set
EnumSet<Numbers> set;
// add first element and the rest of fakeargs
set = EnumSet.of(Numbers.ONE, fakeargs);
// print the set
System.out.println("Set:" + set);
}
}
输出结果为:
Set:[ONE, THREE, FOUR, FIVE]
热门文章
优秀文章