コレクションフレームワーク(Collectionコレクションの基本機能テスト)
1157 ワード
コアコード:メールボックス:[email protected] 技術討論群:687856230 GoodLuck
package cn.ithelei;
import java.util.ArrayList;
import java.util.Collection;
public class CollectionDemo {
public static void main(String[] args) {
// ALL
// Collection collection=new Collection() ;// ,
//
Collection c = new ArrayList();
// A:
c.add("hello");
c.add("ithelei");
/**
* public boolean add(E e) {
ensureCapacityInternal(size + 1); // Increments modCount!!
elementData[size++] = e;
return true;
}
true; ;
*/
//void clear();//
//c.clear();
//boolean remove(Object o)//
//c.remove("hello");
//boolean remove = c.remove("javaEE");
//boolean contains(Object o) collection , true
boolean contains = c.contains("hello");
// boolean isEmpty() collection , true。
//c.isEmpty();
// int size() 。
//int size = c.size();
//System.out.println(size);
System.out.println(c);
}
}