qq_为了美好的明天
2016-07-22 11:02
public List<Course>course;
public TestGeneric(){
this.course=new ArrayList<Course>();
}
}
第一行的course是用来干什么的?
用来指定List集合内的数据必须都是Course类型的
其实是这样的 List<Course> course = new ArrayList<Course>(); 后面的那个事List这个新对象的名字
Java入门第三季
409792 学习 · 4340 问题
相似问题