问答详情
源自:4-10 学生选课---应用泛型管理课程 Ⅱ

泛型的问题问题

public List<Course>course;

public TestGeneric(){

this.course=new ArrayList<Course>();

}


}

第一行的course是用来干什么的?

提问者:qq_为了美好的明天 2016-07-22 11:02

个回答

  • 樱满集_OL
    2016-07-22 11:32:18
    已采纳

    用来指定List集合内的数据必须都是Course类型的

  • 丶Dinseng
    2016-07-22 11:55:48

    其实是这样的  List<Course> course = new ArrayList<Course>();  后面的那个事List这个新对象的名字