常用集合类用场概括

    技术2022-05-13  2

    1.如果要线程安全,使用Vector、Hashtable

    2.如果不要求线程安全,使用ArrayList、LinkedList、HaspMap

    3.如果要求键值时,使用HashMap、Hashtable

    4.如果数据量很大又要考虑线程安全,用Vector

     

    Collection(接口)

    List(接口)

    │├LinkedList

    │├ArrayList

    │└Vector

    │ └Stack

    Set(接口)

    Map(接口)

    Hashtable

    HashMap

    WeakHashMap

     


    最新回复(0)