黑马程序员技术交流社区

标题: 集合 [提问] [打印本页]

作者: 班志国    时间: 2012-10-15 16:06
标题: 集合 [提问]
本帖最后由 班志国 于 2012-10-15 16:45 编辑
  1. import java.util.*;
  2. class Collection
  3. {
  4.         public static void main(String[] args)
  5.         {
  6.                 ArrayList al = new ArrayList();
  7.                 al.add("1");
  8.                 al.add("2");
  9.                 al.add("3");

  10.                 //获取个数,集合长度
  11.                 sop("size"+al.size());
  12.         }
  13.         public static void sop(Object obj)
  14.         {
  15.                 System.out.println(obj);
  16.         }
  17. }
复制代码
add方法的参数类型是什么?   为什么是这种类型?集合中存储的是什么
作者: 沈佳龙    时间: 2012-10-15 16:38
boolean add(E e)
入口参数:要添加到列表中的元素
返回值:如果List集合对象由于调用add方法而发生更改,则返回true
集合中存储的当然是你要存储的元素了,不过元素的类型是一个泛型
作者: 梁世喜    时间: 2012-10-15 16:42
ArrayList array=new ArrayList();
这样的集合中存储类型是Object型数据的集合。
add(Object obj);参数类型也是Object型。

当ArrayList<T>  al = new ArrayList<T>();时,add()的参数是T类型。存储的是T类型数据的集合。
T可以是任意引用类型
作者: 王震阳老师    时间: 2012-10-15 16:46
任意非空数据类型和非基本数据类型以外的数据类型都是支持的。
作者: 黄小贝    时间: 2012-10-15 16:50
看看源码,可以看出ArrayList 内部用一个Object数组存放对象集合

/**
     * Appends the specified element to the end of this list.
     *
     * @param e element to be appended to this list
     * @return <tt>true</tt> (as specified by {@link Collection#add})
     */
    public boolean add(E e) {
        ensureCapacity(size + 1);  // Increments modCount!!  改变数组长度
        elementData[size++] = e;
        return true;
    }


/**
     * The array buffer into which the elements of the ArrayList are stored.
     * The capacity of the ArrayList is the length of this array buffer.
     */
    private transient Object[] elementData;








欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2