类 FastList<T>

java.lang.Object
cn.xusc.trace.util.FastList<T>
所有已实现的接口:
Serializable, Iterable<T>, Collection<T>, List<T>, RandomAccess

public final class FastList<T> extends Object implements List<T>, RandomAccess, Serializable
Fast list without range checking.

中文说明: 为符合idea的Analyze Code,会将一些不必要的去掉。如果你想获取全的请到see进行查看

English explain: The Analyze Code is consistent with IDEA, will cut out some of the unnecessary. If you want to get all of them, please go to see

另请参阅:
  • 构造器详细资料

    • FastList

      public FastList(Class<?> clazz)
      Construct a FastList with a default size of 32.
      参数:
      clazz - the Class stored in the collection
    • FastList

      public FastList(Class<?> clazz, int capacity)
      Construct a FastList with a specified size.
      参数:
      clazz - the Class stored in the collection
      capacity - the initial size of the FastList
  • 方法详细资料