A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 569015640 中级黑马   /  2015-10-16 00:57  /  283 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

package com.heima.collection;
import java.util.ArrayList;
import java.util.Collection;
import com.heima.bean.Student;
@SuppressWarnings({ "rawtypes", "unchecked" })
public class Demo2_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) {
  //demo1();
  Collection c = new ArrayList();  
  c.add("a");
  c.add("b");
  c.add("c");
  c.add("d");
  
  //c.remove("b");          //删除指定元素
  //c.clear();           //清空集合
  //System.out.println(c.contains("b"));     //判断是否包含
  //System.out.println(c.isEmpty());
  System.out.println(c.size());        //获取元素的个数
  System.out.println(c);
}
public static void demo1() {
  Collection c = new ArrayList();      //父类引用指向子类对象
  boolean b1 = c.add("abc");
  boolean b2 = c.add(true);       //自动装箱new Boolean(true);
  boolean b3 = c.add(100);
  boolean b4 = c.add(new Student("张三",23));   
  boolean b5 = c.add("abc");
  
  System.out.println(b1);
  System.out.println(b2);
  System.out.println(b3);
  System.out.println(b4);
  System.out.println(b5);
  
  System.out.println(c.toString());
}
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马