老熟女激烈的高潮_日韩一级黄色录像_亚洲1区2区3区视频_精品少妇一区二区三区在线播放_国产欧美日产久久_午夜福利精品导航凹凸

java中EnumSet抽象類的示例分析

這篇文章主要為大家展示了“java中EnumSet抽象類的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“java中EnumSet抽象類的示例分析”這篇文章吧。

堅守“ 做人真誠 · 做事靠譜 · 口碑至上 · 高效敬業 ”的價值觀,專業網站建設服務10余年為成都成都工商代辦小微創業公司專業提供成都企業網站定制營銷網站建設商城網站建設手機網站建設小程序網站建設網站改版,從內容策劃、視覺設計、底層架構、網頁布局、功能開發迭代于一體的高端網站建設服務。

EnumSet

EnumSet是Java枚舉類型的泛型容器,Java既然有了SortedSet、TreeSet、HashSet等容器,為何還要多一個EnumSet呢?答案肯定是EnumSet有一定的特性,舉個例子,EnumSet的速度很快。其他特性就不一一列舉了,畢竟本文的內容不是介紹EnumSet的特性。

專門為枚舉類設計的集合類,所有元素必須是枚舉類型

EnumSet的集合元素是有序的,內部以位向量的形成存儲,因此占用內存小,效率高

不允許加入null元素

源碼

package java.util;

import sun.misc.SharedSecrets;


public abstract class EnumSet> extends AbstractSet
  implements Cloneable, java.io.Serializable
{
  /**
   * 元素類型
   */
  final Class elementType;

  /**
   * 通過數組存儲元素 
   */
  final Enum[] universe;

  private static Enum[] ZERO_LENGTH_ENUM_ARRAY = new Enum[0];

  EnumSet(ClasselementType, Enum[] universe) {
    this.elementType = elementType;
    this.universe  = universe;
  }

  /**
   * 創造一個空的 enum set 并制定其元素類型
   * @param elementType the class object of the element type for this enum
   *   set
   * @throws NullPointerException if elementType is null
   */
  public static > EnumSet noneOf(Class elementType) {
    Enum[] universe = getUniverse(elementType);
    if (universe == null)
      throw new ClassCastException(elementType + " not an enum");

    if (universe.length <= 64)
      return new RegularEnumSet<>(elementType, universe);
    else
      return new JumboEnumSet<>(elementType, universe);
  }

  /**
   * 創建一個包含所有在指定元素類型的元素的枚舉set
   *
   * @param elementType the class object of the element type for this enum
   *   set
   * @throws NullPointerException if elementType is null
   */
  public static > EnumSet allOf(Class elementType) {
    EnumSet result = noneOf(elementType);
    result.addAll();
    return result;
  }

  /**
   * Adds all of the elements from the appropriate enum type to this enum
   * set, which is empty prior to the call.
   */
  abstract void addAll();

  /**
   * 創建一個枚舉設置相同的元素類型與指定枚舉set
   *
   * @param s the enum set from which to initialize this enum set
   * @throws NullPointerException if s is null
   */
  public static > EnumSet copyOf(EnumSet s) {
    return s.clone();
  }

  /**
   * 創建一個枚舉集從指定集合初始化,最初包含相同的元素 
   * @param c the collection from which to initialize this enum set
   * @throws IllegalArgumentException if c is not an
   *   EnumSet instance and contains no elements
   * @throws NullPointerException if c is null
   */
  public static > EnumSet copyOf(Collection c) {
    if (c instanceof EnumSet) {
      return ((EnumSet)c).clone();
    } else {
      if (c.isEmpty())
        throw new IllegalArgumentException("Collection is empty");
      Iterator i = c.iterator();
      E first = i.next();
      EnumSet result = EnumSet.of(first);
      while (i.hasNext())
        result.add(i.next());
      return result;
    }
  }

  /**
   * 創建一個枚舉集合,其元素與 s 相同
   * @param s the enum set from whose complement to initialize this enum set
   * @throws NullPointerException if s is null
   */
  public static > EnumSet complementOf(EnumSet s) {
    EnumSet result = copyOf(s);
    result.complement();
    return result;
  }

  /**
   * 1 個元素枚舉集合
   *
   * @param e the element that this set is to contain initially
   * @throws NullPointerException if e is null
   * @return an enum set initially containing the specified element
   */
  public static > EnumSet of(E e) {
    EnumSet result = noneOf(e.getDeclaringClass());
    result.add(e);
    return result;
  }

  /**
   * 2 個元素枚舉集合
   *
   * @param e1 an element that this set is to contain initially
   * @param e2 another element that this set is to contain initially
   * @throws NullPointerException if any parameters are null
   * @return an enum set initially containing the specified elements
   */
  public static > EnumSet of(E e1, E e2) {
    EnumSet result = noneOf(e1.getDeclaringClass());
    result.add(e1);
    result.add(e2);
    return result;
  }

  /**
   * 3 個元素枚舉集合
   *
   * @param e1 an element that this set is to contain initially
   * @param e2 another element that this set is to contain initially
   * @param e3 another element that this set is to contain initially
   * @throws NullPointerException if any parameters are null
   * @return an enum set initially containing the specified elements
   */
  public static > EnumSet of(E e1, E e2, E e3) {
    EnumSet result = noneOf(e1.getDeclaringClass());
    result.add(e1);
    result.add(e2);
    result.add(e3);
    return result;
  }

  /**
   * 4 個元素枚舉集合
   * @param e1 an element that this set is to contain initially
   * @param e2 another element that this set is to contain initially
   * @param e3 another element that this set is to contain initially
   * @param e4 another element that this set is to contain initially
   * @throws NullPointerException if any parameters are null
   * @return an enum set initially containing the specified elements
   */
  public static > EnumSet of(E e1, E e2, E e3, E e4) {
    EnumSet result = noneOf(e1.getDeclaringClass());
    result.add(e1);
    result.add(e2);
    result.add(e3);
    result.add(e4);
    return result;
  }

  /**
   * 5 個元素枚舉集合
   *
   * @param e1 an element that this set is to contain initially
   * @param e2 another element that this set is to contain initially
   * @param e3 another element that this set is to contain initially
   * @param e4 another element that this set is to contain initially
   * @param e5 another element that this set is to contain initially
   * @throws NullPointerException if any parameters are null
   * @return an enum set initially containing the specified elements
   */
  public static > EnumSet of(E e1, E e2, E e3, E e4,
                          E e5)
  {
    EnumSet result = noneOf(e1.getDeclaringClass());
    result.add(e1);
    result.add(e2);
    result.add(e3);
    result.add(e4);
    result.add(e5);
    return result;
  }

  /**
   * n 個元素枚舉集合
   *
   * @param first an element that the set is to contain initially
   * @param rest the remaining elements the set is to contain initially
   * @throws NullPointerException if any of the specified elements are null,
   *   or if rest is null
   * @return an enum set initially containing the specified elements
   */
  @SafeVarargs
  public static > EnumSet of(E first, E... rest) {
    EnumSet result = noneOf(first.getDeclaringClass());
    result.add(first);
    for (E e : rest)
      result.add(e);
    return result;
  }

  /**
   * 區間內元素的 枚舉集合
   *
   * @param from the first element in the range
   * @param to the last element in the range
   * @throws NullPointerException if {@code from} or {@code to} are null
   * @throws IllegalArgumentException if {@code from.compareTo(to) > 0}
   * @return an enum set initially containing all of the elements in the
   *     range defined by the two specified endpoints
   */
  public static > EnumSet range(E from, E to) {
    if (from.compareTo(to) > 0)
      throw new IllegalArgumentException(from + " > " + to);
    EnumSet result = noneOf(from.getDeclaringClass());
    result.addRange(from, to);
    return result;
  }

  /**
   * Adds the specified range to this enum set, which is empty prior
   * to the call.
   */
  abstract void addRange(E from, E to);

  /**
   * Returns a copy of this set.
   *
   * @return a copy of this set
   */
  public EnumSet clone() {
    try {
      return (EnumSet) super.clone();
    } catch(CloneNotSupportedException e) {
      throw new AssertionError(e);
    }
  }

  /**
   * Complements the contents of this enum set.
   */
  abstract void complement();

  /**
   * Throws an exception if e is not of the correct type for this enum set.
   */
  final void typeCheck(E e) {
    Class eClass = e.getClass();
    if (eClass != elementType && eClass.getSuperclass() != elementType)
      throw new ClassCastException(eClass + " != " + elementType);
  }

  /**
   * Returns all of the values comprising E.
   * The result is uncloned, cached, and shared by all callers.
   */
  private static > E[] getUniverse(Class elementType) {
    return SharedSecrets.getJavaLangAccess()
                    .getEnumConstantsShared(elementType);
  }

  /**
   * This class is used to serialize all EnumSet instances, regardless of
   * implementation type. It captures their "logical contents" and they
   * are reconstructed using public static factories. This is necessary
   * to ensure that the existence of a particular implementation type is
   * an implementation detail.
   *
   * @serial include
   */
  private static class SerializationProxy >
    implements java.io.Serializable
  {
    /**
     * The element type of this enum set.
     *
     * @serial
     */
    private final Class elementType;

    /**
     * The elements contained in this enum set.
     *
     * @serial
     */
    private final Enum[] elements;

    SerializationProxy(EnumSet set) {
      elementType = set.elementType;
      elements = set.toArray(ZERO_LENGTH_ENUM_ARRAY);
    }

    private Object readResolve() {
      EnumSet result = EnumSet.noneOf(elementType);
      for (Enum e : elements)
        result.add((E)e);
      return result;
    }

    private static final long serialVersionUID = 362491234563181265L;
  }

  Object writeReplace() {
    return new SerializationProxy<>(this);
  }

  // readObject method for the serialization proxy pattern
  // See Effective Java, Second Ed., Item 78.
  private void readObject(java.io.ObjectInputStream stream)
    throws java.io.InvalidObjectException {
    throw new java.io.InvalidObjectException("Proxy required");
  }
}

以上是“java中EnumSet抽象類的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注創新互聯行業資訊頻道!


當前文章:java中EnumSet抽象類的示例分析
文章源于:http://www.xueling.net.cn/article/igpsph.html

其他資訊

在線咨詢
服務熱線
服務熱線:028-86922220
TOP
主站蜘蛛池模板: 亚洲a成人午夜天堂 | 免费国产欧美国日产A | 日本国产一区二区 | 动漫人物交性h的视频 | 色午夜日本高清视频WWW | 午夜久久久久久久久 | 亚洲精品国产乱码久久久1区 | 91色爱| 欧美国产精品久久久久久免费 | 欧美成人理论片乱 | 美女视频黄a全部免费看小说 | 国产精品四 | 国精产品一区一区三区免费视频 | 欧美高清视频看片在线观看 | 久久九九有精品国产 | 永久免费品色堂 | 亚洲欧美成人a毛片 | 在线视频精品一区 | 性大毛片免费视频 | 欧美性猛交久久久乱大交小说 | 九九热免费精品 | 精品久久久av | 久久精品一区中文字幕 | 四虎影院久久 | 最近免费2019中文字幕大全 | 亚洲久久成人 | 国产乱人偷精品免费视频 | 国产精品久久9 | 少妇AAA级久久久无码精品片 | 国产精品人人爽人人爽av | 15小男生gay自慰脱裤子 | 日本丰满的人妻HD高清在线 | 豪放的女大兵在线观看 | 亚洲AV无码精品国产成人 | 亚洲欧美综合久久久久久v动漫 | 女人张开腿让男人桶个爽 | 亚洲区中文字幕 | 亚洲va中文字幕无码 | 欧美日韩中文字幕 | 亚洲免费在线看 | 亚洲国产日韩一区二区三区 |