Java_util_package(轉)
Java_util_package(轉)[@more@]Collection
RetainAll :保留兩個Collection的交集。注意,如果該Collection是由Arrays.asList轉換而來,那麼這個方法會失敗。因為轉換來的List介面不支援這個方法
Samples:
public static void collectionTest()
{
Collection c1 = new ArrayList();
Collection c2 = new ArrayList();
c1.add("aaa");
c1.add("bbb");
c1.add("ccc");
c2.add("ddd");
c2.add("ccc");
c2.add("eee");
boolean isRetainSucceed = false;
isRetainSucceed = c2.retainAll(c1);
System.out.println("isRetainSucceed = " + isRetainSucceed);
System.out.println("********** print collection c2 values ");
for (Iterator iter = c2.iterator(); iter.hasNext();)
{
String s = (String) iter.next();
System.out.println("s = " + s);
}
}
Enumeration
太簡單,參考文件
Comparator
未使用過
EventListener
空介面
Iterator
和Enumeration 的不同點:
1. 允許遍歷Collection時刪除物件
2. 方法名字可讀性更好
List
實現的四個類:AbstractList, ArrayList, LinkedList, Vector
List 特點:
1. 允許重複元素,允許null元素
2. 推薦用Iterator遍歷,而不是用索引
addAll : 加入Collection
containsAll :是否包含Collection
retainAll : 保留和Collection的交集
subList : 返回指定索引區間的子List
ListIterator :
1. 提供元素的雙向遍歷,而不是單向
2. 遍歷時可改變儲存的元素
3. 可動態插入元素,插入的元素在當前操作元素的上一個位置
Samples:
public static void ListTest(){
System.out.println("**********ListTest begin:");
List list = new ArrayList();
list.add("aaa");
list.add("bbb");
list.add("ccc");
ListIterator iter = list.listIterator();
System.out.println("**************** Iterating List forward :");
while(iter.hasNext()){
String s = (String)iter.next();
System.out.println("**********element = " + s);
}
System.out.println("**************** Iterating List backward :");
while(iter.hasPrevious()){
String s = (String)iter.previous();
System.out.println("**********element = " + s);
}
System.out.println("**************** Add element into List :");
while(iter.hasNext()){
int i = iter.nextIndex();
if (i==2)
iter.add("ddd");
String s = (String)iter.next();
System.out.println("**********element = " + s);
}
System.out.println("**************** Iterating List backward after add element:");
while(iter.hasPrevious()){
String s = (String)iter.previous();
System.out.println("**********element = " + s);
}
System.out.println("**********ListTest end:");
}
Map
KeySet :
返回Set物件,然後可以遍歷這個Set。其中的每個元素都是Map.Entry物件
Map.Entry.setValue :
在遍歷Entry物件時,可以改變該Key對應的Value值
Samples:
public static void mapEntrySetTest(){
System.out.println("**********mapEntrySetTest begin:");
Map map = new HashMap();
map.put("first","aaa");
map.put("second","bbb");
map.put("third","ccc");
map.put("fourth","ddd");
Set set = map.entrySet();
Map.Entry entry = null;
System.out.println("********** print values in map :");
for(Iterator iter = set.iterator();iter.hasNext();){
entry = (Map.Entry)iter.next();
System.out.println("Key is :" + entry.getKey() + " and Value is :" + entry.getValue());
entry.setValue((String)entry.getValue() + "_setValueTest");
}
System.out.println("********** After set value ,iterating values in map :");
for(Iterator iter = set.iterator();iter.hasNext();){
entry = (Map.Entry)iter.next();
System.out.println("Key is :" + entry.getKey() + " and Value is :" + entry.getValue());
}
System.out.println("**********mapEntrySetTest end:");
}
Observable and Observer
暫未使用
RandomAccess
空介面。實現這個介面的List實現品,表示他們支援高速的隨機訪問元素。如果實現這個介面,理論上
for (int i=0, n=list.size(); i < n; i++)
list.get(i);
比下面程式碼要快:
for (Iterator i=list.iterator(); i.hasNext(); )
i.next();
Set :
沒什麼特別的,和Collection差不多
作者Blog:http://blog.csdn.net/WalkingWithJava/
RetainAll :保留兩個Collection的交集。注意,如果該Collection是由Arrays.asList轉換而來,那麼這個方法會失敗。因為轉換來的List介面不支援這個方法
Samples:
public static void collectionTest()
{
Collection c1 = new ArrayList();
Collection c2 = new ArrayList();
c1.add("aaa");
c1.add("bbb");
c1.add("ccc");
c2.add("ddd");
c2.add("ccc");
c2.add("eee");
boolean isRetainSucceed = false;
isRetainSucceed = c2.retainAll(c1);
System.out.println("isRetainSucceed = " + isRetainSucceed);
System.out.println("********** print collection c2 values ");
for (Iterator iter = c2.iterator(); iter.hasNext();)
{
String s = (String) iter.next();
System.out.println("s = " + s);
}
}
Enumeration
太簡單,參考文件
Comparator
未使用過
EventListener
空介面
Iterator
和Enumeration 的不同點:
1. 允許遍歷Collection時刪除物件
2. 方法名字可讀性更好
List
實現的四個類:AbstractList, ArrayList, LinkedList, Vector
List 特點:
1. 允許重複元素,允許null元素
2. 推薦用Iterator遍歷,而不是用索引
addAll : 加入Collection
containsAll :是否包含Collection
retainAll : 保留和Collection的交集
subList : 返回指定索引區間的子List
ListIterator :
1. 提供元素的雙向遍歷,而不是單向
2. 遍歷時可改變儲存的元素
3. 可動態插入元素,插入的元素在當前操作元素的上一個位置
Samples:
public static void ListTest(){
System.out.println("**********ListTest begin:");
List list = new ArrayList();
list.add("aaa");
list.add("bbb");
list.add("ccc");
ListIterator iter = list.listIterator();
System.out.println("**************** Iterating List forward :");
while(iter.hasNext()){
String s = (String)iter.next();
System.out.println("**********element = " + s);
}
System.out.println("**************** Iterating List backward :");
while(iter.hasPrevious()){
String s = (String)iter.previous();
System.out.println("**********element = " + s);
}
System.out.println("**************** Add element into List :");
while(iter.hasNext()){
int i = iter.nextIndex();
if (i==2)
iter.add("ddd");
String s = (String)iter.next();
System.out.println("**********element = " + s);
}
System.out.println("**************** Iterating List backward after add element:");
while(iter.hasPrevious()){
String s = (String)iter.previous();
System.out.println("**********element = " + s);
}
System.out.println("**********ListTest end:");
}
Map
KeySet :
返回Set物件,然後可以遍歷這個Set。其中的每個元素都是Map.Entry物件
Map.Entry.setValue :
在遍歷Entry物件時,可以改變該Key對應的Value值
Samples:
public static void mapEntrySetTest(){
System.out.println("**********mapEntrySetTest begin:");
Map map = new HashMap();
map.put("first","aaa");
map.put("second","bbb");
map.put("third","ccc");
map.put("fourth","ddd");
Set set = map.entrySet();
Map.Entry entry = null;
System.out.println("********** print values in map :");
for(Iterator iter = set.iterator();iter.hasNext();){
entry = (Map.Entry)iter.next();
System.out.println("Key is :" + entry.getKey() + " and Value is :" + entry.getValue());
entry.setValue((String)entry.getValue() + "_setValueTest");
}
System.out.println("********** After set value ,iterating values in map :");
for(Iterator iter = set.iterator();iter.hasNext();){
entry = (Map.Entry)iter.next();
System.out.println("Key is :" + entry.getKey() + " and Value is :" + entry.getValue());
}
System.out.println("**********mapEntrySetTest end:");
}
Observable and Observer
暫未使用
RandomAccess
空介面。實現這個介面的List實現品,表示他們支援高速的隨機訪問元素。如果實現這個介面,理論上
for (int i=0, n=list.size(); i < n; i++)
list.get(i);
比下面程式碼要快:
for (Iterator i=list.iterator(); i.hasNext(); )
i.next();
Set :
沒什麼特別的,和Collection差不多
作者Blog:http://blog.csdn.net/WalkingWithJava/
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617731/viewspace-958150/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- IsPostBack深入探討(轉轉轉轉轉)
- 玩轉SSH埠轉發
- 彼得反轉原理(轉載)
- java 跳轉語句(轉)Java
- JDom 常用轉換方法 (轉)
- 行列轉換 交叉表 (轉)
- Excel轉PDF怎麼轉?Excel轉PDF方法有哪些Excel
- 語音轉文字工具,語音轉文字怎樣轉?
- 什麼是SSH埠轉發(本地轉發、遠端轉發、動態轉發)?
- SQL 行轉列,列轉行SQL
- (轉)OC專案轉Swift指南Swift
- pdf轉word如何線上轉換?
- 轉轉OLAP自助分析實踐
- JS轉換HTML轉義符JSHTML
- (轉)SqlServer裡DateTime轉字串SQLServer字串
- Mysql - 行轉列、列轉行MySql
- js跳轉頁面方法(轉)JS
- oracle行列轉換-行轉列Oracle
- oracle行列轉換-列轉行Oracle
- 內碼轉換技術 (轉)
- 金額大寫轉換(轉)
- | / - 的旋轉效果實現(轉)
- 【轉】ckEditor使用方法 轉帖
- 從C轉入C++ (轉)C++
- svg 至 flash的轉化 (轉)SVG
- 玩轉Windows桌面圖示 (轉)Windows
- 大寫金額轉換 (轉)
- 用Javascript轉換原始碼 (轉)JavaScript原始碼
- 玩轉網頁捲軸(轉)網頁
- 熊與猴的轉換(轉)
- 轉入OO思維模式 (轉)模式
- ppt轉pdf怎麼轉?試試這個轉換技巧!
- heic格式轉換jpg工具——轉易俠heic轉換器
- java型別轉換與強制型別轉換(轉)Java型別
- PDF轉PPT怎麼轉?好用的PDF轉換方法有哪些?
- 如何將圖片轉word?圖文轉換選轉易俠
- heic格式轉換jpg免費怎麼轉?轉易俠可以
- Oracle實驗(02):轉換 & 轉譯Oracle