<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 李云澤 閱讀(469) 評論(0)  編輯  收藏 所屬分類: 面試筆試相關的 、SCJP認證學習

    主站蜘蛛池模板: 日本一区免费电影| 欧美a级成人网站免费| 亚洲国产日韩在线观频| 精品亚洲成a人在线观看| 午夜高清免费在线观看| 亚洲精品天堂无码中文字幕| 卡一卡二卡三在线入口免费| 在线看亚洲十八禁网站| 免费大片在线观看网站| 永久免费无码网站在线观看个| 亚洲成av人在片观看| 牛牛在线精品观看免费正 | 免费精品国产自产拍在线观看| 暖暖在线日本免费中文| 国产精品久久久久久亚洲影视| 国产精品公开免费视频| 人人公开免费超级碰碰碰视频| 国产亚洲精品高清在线| 国产在线精品免费aaa片| 青青草原精品国产亚洲av| 青青在线久青草免费观看| 亚洲日韩中文字幕一区| 免费二级毛片免费完整视频| 三年片免费高清版 | 亚洲美女在线观看播放| 日韩吃奶摸下AA片免费观看| 亚洲av色香蕉一区二区三区蜜桃| 免费人成网站7777视频| 成人黄网站片免费视频| 亚洲一卡二卡三卡四卡无卡麻豆| 亚洲国产精品日韩在线观看| 免费人成视频在线| 国产99久久久国产精免费| 久久精品国产精品亚洲艾| 在线视频免费观看高清| 一级毛片在线免费视频| 亚洲精品国产福利片| 免费日韩在线视频| 午夜影院免费观看| 在线亚洲精品视频| 亚洲尹人香蕉网在线视颅|