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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 班志国 中级黑马   /  2012-10-15 16:06  /  1241 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 班志国 于 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方法的参数类型是什么?   为什么是这种类型?集合中存储的是什么

评分

参与人数 1技术分 +1 收起 理由
杨志 + 1

查看全部评分

4 个回复

倒序浏览
boolean add(E e)
入口参数:要添加到列表中的元素
返回值:如果List集合对象由于调用add方法而发生更改,则返回true
集合中存储的当然是你要存储的元素了,不过元素的类型是一个泛型
回复 使用道具 举报
ArrayList array=new ArrayList();
这样的集合中存储类型是Object型数据的集合。
add(Object obj);参数类型也是Object型。

当ArrayList<T>  al = new ArrayList<T>();时,add()的参数是T类型。存储的是T类型数据的集合。
T可以是任意引用类型
回复 使用道具 举报
任意非空数据类型和非基本数据类型以外的数据类型都是支持的。
回复 使用道具 举报
看看源码,可以看出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;



回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马