为了账号安全,请及时绑定邮箱和手机立即绑定

为什么temp和temp2都是取得数组0位置的数据

public class ListSet {
    //用于存放备选课程的List
    public List coursesToSelect;
    public  ListSet(){
        this.coursesToSelect = new ArrayList();
    }
    //用于往coursesToSelect中添加备选课程
    public void testAdd(){
        //创建一个课程对象,并通过调用add方法,添加到备选课程List中
        Course cr1 = new Course("1","数据结构");
        coursesToSelect.add(cr1);
        Course temp = (Course) coursesToSelect.get(0);
        System.out.println("添加了课程:" + temp.id + ":" + temp.name);
        Course cr2 = new Course("2","C语言");
        coursesToSelect.add(0,cr2);
        Course temp2 = (Course) coursesToSelect.get(0);
        int len = coursesToSelect.size();
        System.out.println("添加了课程:" + temp2.id + ":" + temp2.name);
        System.out.println("数组长度为:" + len);
    }
    public static void main(String [] args){
        ListSet lt = new ListSet();
        lt.testAdd();
    }
}


正在回答

1 回答

一开始是一个空列表    →    [  ]

coursesToSelect.add(cr1)

运行后,列表增加了元素 cr1。

现在的列表                  →    [ cr1 ]

此时 元素 cr1 的下标为 0 (下标从 0 开始),此时用 temp 读取位置 0 处的元素 即 cr1.

然后,运行后续的代码,到了

coursesToSelect.add(0,cr2);

会在位置 0 处插入 cr2, 然后原来的元素会位置后移。

现在的列表                   →    [ cr2  cr1 ]

此时,元素 cr2 的下标为 0,cr1 的下标变成了 1,此时用 temp2 读取位置0 处的元素 即 cr2.

0 回复 有任何疑惑可以回复我~
#1

慕容6209797 提问者

懂了 此0非彼0 谢谢
2019-07-23 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么temp和temp2都是取得数组0位置的数据

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信