- package com.heima.collection;
- import java.util.ArrayList;
- import java.util.Collection;
- public class Demo3_Collection {
- /**
- * A:案例演示
- *
- 基本功能演示
-
- boolean add(E e)
- boolean remove(Object o)
- void clear()
- boolean contains(Object o)
- boolean isEmpty()
- int size()
-
- * B:注意:
- *
- collectionXxx.java使用了未经检查或不安全的操作.
- 注意:要了解详细信息,请使用 -Xlint:unchecked重新编译.
- java编译器认为该程序存在安全隐患
- 温馨提示:这不是编译失败,所以先不用理会,等学了泛型你就知道了
- add方法如果是List集合一直都返回true,因为List集合中是可以存储重复元素的
- 如果是Set集合当存储重复元素的时候,就会返回false
-
- ArrayList的父类的父类重写toString方法,所以在打印对象的引用的时候,输出的结果不是Object类中toString的结果
- */
- public static void main(String[] args) {
- Collection c = new ArrayList();
- c.add("aa");
- c.add("bb");
- c.add("cc");
- c.add("dd");
- System.out.println(c);
- c.remove("bb");
- System.out.println(c);
- boolean b = c.contains("zz");
- System.out.println(b);
- boolean b1 = c.contains("cc");
- System.out.println(b1);
- boolean b3 = c.isEmpty();
- System.out.println(b3);
- System.out.println(c.size());
- c.clear();
- System.out.println(c);
- boolean b2 = c.isEmpty();
- System.out.println(b2);
- }
- }
复制代码 |
|