Inheritance

1、List (ordered, repeatable) Object List is stored in an orderly, but also repeatable, List index is concerned, with a series of index and related methods, query speed. Because to list the collection ...
Map interpretation Map store a data structure of the object by key value. We've come in an array in the Map Object us to index their content indexed by subject by array index for the index object call...
[Statement] by reference herein from geek video College 1, a storage format: Save key-> value way example: snow -> 15806880888 2, commonly subclasses: HashMap: storage disorder, key allowed to r...
Map does not inherit the Collection interface that can be used to save data with a mapping relationship, which provides a key to value mapping. Thus, Map set values stored in these two sets, one set...
Java Collections --Map Interface 1. Definitions Map data for the mapping relationship between the presence of <key, value> stored. Wherein, key value can not be repeated (using equals () method ...
1.Collection collection 2.Map collection 3. The operation set of tools Collections: Provides a number of methods to sort the elements set, query and modify, etc., also provides a set of immutable obje...
1. Background 1. The Map collection is widely used in actual development. Let's first talk about how to use the Map collection in the actual development and some knowledge points to pay attention to. ...
In the article between, I gave a rough description of the collection. And understand the inheritance structure diagram of Collection based on single element storage in Java collection. Next we need to...
Map 01 / HashMap In JDK8, HashMap underlying a "linked list arrays + + red-black tree" implementation. In learning HashMap principle, we should focus its data structure, put the process, as ...
A, Map Collections Overview (In fact, it is to use a Map Set underlying collection.) Map Collection belonging to exist side by side and set in the frame Map storage is the key-value pairs Map storage ...