<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    我思故我強

    第九部分:集合類框架

    第九部分:集合類框架

    • 知道如何在特定的條件下選擇適合的集合類/接口。
    • 能正確地實現hashcode方法。

    第一節          所有接口和class定義

    1:Set

    public interface Set extends Collection

    A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1 and e2 such that e1.equals(e2), and at most one null element. As implied by its name, this interface models the mathematical set abstraction.

     

    2:SortedSet

    public interface SortedSet extends Set.

    A set that further guarantees that its iterator will traverse the set in ascending element order, sorted according to the natural ordering of its elements (see Comparable), or by a Comparator provided at sorted set creation time.

     

    3:HashSet

    public class HashSet extends AbstractSet implements Set, Cloneable, Serializable

    This class implements the Set interface, backed by a hash table (actually a HashMap instance). It makes no guarantees as to the iteration order of the set; in particular, it does not guarantee that the order will remain constant over time. This class permits the null element.

     

    4:TreeSet

    public class TreeSet extends AbstractSet implements SortedSet, Cloneable, Serializable

    This class implements the Set interface, backed by a TreeMap instance. This class guarantees that the sorted set will be in ascending element order, sorted according to the natural order of the elements (see Comparable), or by the comparator provided at set creation time, depending on which constructor is used.

     

    5:LinkedHashSet:

    public class LinkedHashSet extends HashSet implements Set, Cloneable, Serializable

    Hash table and linked list implementation of the Set interface, with predictable iteration order. This implementation differs from HashSet in that it maintains a doubly-linked list running through all of its entries. This linked list defines the iteration ordering, which is the order in which elements were inserted into the set (insertion-order). Note that insertion order is not affected if an element is re-inserted into the set. (An element e is reinserted into a set s if s.add(e) is invoked when s.contains(e) would return true immediately prior to the invocation.)

     

     

     

    5:Map

    public interface Map

    An object that maps keys to values. A map cannot contain duplicate keys; each key can map to at most one value.

     

    6:SortedMap

    public interface SortedMap extends Map

    A map that further guarantees that it will be in ascending key order, sorted according to the natural ordering of its keys (see the Comparable interface), or by a comparator provided at sorted map creation time. (This interface is the map analogue of the SortedSet interface.)

     

    7:HashMap(允許key和value為NULL)

    public class HashMap extends AbstractMap implements Map, Cloneable, Serializable

    Hash table based implementation of the Map interface. This implementation provides all of the optional map operations, and permits null values and the null key. (The HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized and permits nulls.) This class makes no guarantees as to the order of the map; in particular, it does not guarantee that the order will remain constant over time

     

    8:TreeMap

    public class TreeMap extends AbstractMap implements SortedMap, Cloneable, Serializable

    Red-Black tree based implementation of the SortedMap interface. This class guarantees that the map will be in ascending key order, sorted according to the natural order for the key's class (see Comparable), or by the comparator provided at creation time, depending on which constructor is used.

     

    9:HashTable(不允許key和value為NULL)

    public class Hashtable extends Dictionary implements Map, Cloneable, Serializable.

    This class implements a hashtable, which maps keys to values. Any non-null object can be used as a key or as a value.

     

    9:LinkedHashMap

    public class LinkedHashMap extends HashMap

    Hash table and linked list implementation of the Map interface, with predictable iteration order. This implementation differs from HashMap in that it maintains a doubly-linked list running through all of its entries. This linked list defines the iteration ordering, which is normally the order in which keys were inserted into the map (insertion-order). Note that insertion order is not affected if a key is re-inserted into the map. (A key k is reinserted into a map m if m.put(k, v) is invoked when m.containsKey(k) would return true immediately prior to the invocation.)

     

    9:IdentityHashMap

    public class IdentityHashMap extends AbstractMap implements Map, Serializable, Cloneable

    This class implements the Map interface with a hash table, using reference-equality in place of object-equality when comparing keys (and values). In other words, in an IdentityHashMap, two keys k1 and k2 are considered equal if and only if (k1==k2). (In normal Map implementations (like HashMap) two keys k1 and k2 are considered equal if and only if (k1==null ? k2==null : k1.equals(k2)).)

    This class is not a general-purpose Map implementation! While this class implements the Map interface, it intentionally violates Map's general contract, which mandates the use of the equals method when comparing objects. This class is designed for use only in the rare cases wherein reference-equality semantics are required.

     

     

    10:List

    public interface List extends Collection

    An ordered collection (also known as a sequence). The user of this interface has precise control over where in the list each element is inserted. The user can access elements by their integer index (position in the list), and search for elements in the list.

     

    Unlike sets, lists typically allow duplicate elements. More formally, lists typically allow pairs of elements e1 and e2 such that e1.equals(e2), and they typically allow multiple null elements if they allow null elements at all.

     

    11:ArrayList

    public class ArrayList extends AbstractList implements List, Cloneable, Serializable

    Resizable-array implementation of the List interface. Implements all optional list operations, and permits all elements, including null. In addition to implementing the List interface, this class provides methods to manipulate the size of the array that is used internally to store the list. (This class is roughly equivalent to Vector, except that it is unsynchronized.)

     

    12:LinkedList

    public class LinkedList extends AbstractSequentialList implements List, Cloneable, Serializable

    Linked list implementation of the List interface. Implements all optional list operations, and permits all elements (including null). In addition to implementing the List interface, the LinkedList class provides uniformly named methods to get, remove and insert an element at the beginning and end of the list. These operations allow linked lists to be used as a stack, queue, or double-ended queue (deque).

     

    13:Vector

    public class Vector extends AbstractList implements List, Cloneable, Serializable

    The Vector class implements a growable array of objects. Like an array, it contains components that can be accessed using an integer index. However, the size of a Vector can grow or shrink as needed to accommodate adding and removing items after the Vector has been created.

     

    14:Collection

    public interface Collection

    The root interface in the collection hierarchy. A collection represents a group of objects, known as its elements. Some collections allow duplicate elements and others do not. Some are ordered and others unordered. The SDK does not provide any direct implementations of this interface: it provides implementations of more specific subinterfaces like Set and List. This interface is typically used to pass collections around and manipulate them where maximum generality is desired.

    15:Collections

    public class Collections extends Object

    This class consists exclusively of static methods that operate on or return collections. It contains polymorphic algorithms that operate on collections, "wrappers", which return a new collection backed by a specified collection, and a few other odds and ends.

    posted on 2009-10-16 11:44 李云澤 閱讀(462) 評論(0)  編輯  收藏 所屬分類: 面試筆試相關的SCJP認證學習

    主站蜘蛛池模板: 免费视频成人片在线观看| 久久精品熟女亚洲av麻豆| 久青草视频97国内免费影视| 国产国产人免费人成免费视频| 中文字幕 亚洲 有码 在线| 成人免费福利电影| 亚洲AV无码片一区二区三区| 国产日产成人免费视频在线观看| 亚洲AV性色在线观看| 亚洲AⅤ视频一区二区三区| 日韩精品免费一线在线观看| 亚洲精品无码久久久久AV麻豆| 九九99热免费最新版| 国产亚洲一区二区手机在线观看| 免费在线中文日本| 亚洲电影免费观看| 我要看免费的毛片| 成人午夜免费视频| 亚洲av无码一区二区乱子伦as| 91精品免费久久久久久久久| 7777久久亚洲中文字幕| 日本中文一区二区三区亚洲| 中国毛片免费观看| 亚洲毛片一级带毛片基地| 精品国产一区二区三区免费看| 人妻仑刮八A级毛片免费看| 国产亚洲精品a在线观看app| 无码国产精品一区二区免费式直播| 亚洲欧美成人综合久久久 | 毛片免费全部播放无码| 亚洲人成网站在线播放2019| 亚洲精品无码成人片在线观看 | 亚洲中文字幕不卡无码| 97精品免费视频| 亚洲av成人中文无码专区| 在线亚洲精品自拍| 青青草免费在线视频| av片在线观看永久免费| 亚洲午夜国产精品无卡| 色久悠悠婷婷综合在线亚洲| 一二三四免费观看在线视频中文版 |