1、int size(); 返回collection 中的元素。
2、boolean is Empty();
3、boolean contains(object obj);
4\boolean contains(collection c);
5、boolean add(object element);
6、boolean addall(collection c);
7、boolean removeAll(object element);
8、boolean removeAll(Collction c);
9、void clear();
10、boolean retainAll(collection c);
11、iterator iterato();
12、object[]toArray();
时间: 2024-10-16 17:18:48