java.util.EnumSet.of(E first, E rest)方法範例


java.util.EnumSet.of(E first, E... rest) 方法建立一個最初包含指定元素的列舉set。此工廠引數列表使用引數功能,可用於建立一個列舉set最初包含元素的任意數位,但它很可能執行速度比不使用變數引數的過載執行得慢。

宣告

以下是java.util.EnumSet.of()方法的宣告

public static <E extends Enum<E>> EnumSet<E> of(E first, E... rest)

引數

  • first -- 該集最初要包含的元素。

  • rest -- 其餘的元素集合最初要包含的。

返回值

此方法返回最初包含指定元素的列舉set。

異常

  • NullPointerException-- 如果e 是 null

例子

下面的範例演示java.util.EnumSet.Of()方法的用法。

/*This example is using a method called main2
to simulate calling the main method using args
from a command line.*/

package com.yiibai;

import java.util.*;

public class EnumSetDemo {

   // 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]