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

为什么是temp的id和name,不是cr1的id的id和name?

package com.imooc.cellection;

import java.util.Arrays;

import java.util.List;

import java.util.ArrayList;

public class ListTest {

   public List coursesToSelect;

   public ListTest(){

  this.coursesToSelect = new ArrayList();

   }

   public void testAdd(){

  Course cr1 = new Course("1","数据结构");

  coursesToSelect.add(cr1); 

  Course temp = (Course)coursesToSelect.get(0);

  System.out.println("添加了课程:"+temp.id+":"+temp.name);

   


正在回答

2 回答

为了验证数据确实传进 了coursesToSelect

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

你添加之后是第一个数据吗?coursesToSelect.get(0);这是获取的第一个数据

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

举报

0/150
提交
取消

为什么是temp的id和name,不是cr1的id的id和name?

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