package com.imooc.collection;import java.util.ArrayList;import java.util.List;public class TestGeneric { public static void main(String[] args) { TestGeneric tg=new TestGeneric(); tg.testAdd(); tg.testForEach(); // TODO 自动生成的方法存根 /* * 带有泛型————Course,的List类型属性; */ } private void testForEach() { // TODO 自动生成的方法存根 } public List<Course> courses; public TestGeneric(){ this.courses=new ArrayList<Course>(); }; /* * 测试添加 */ public void testAdd(){ Course cr1=new Course("1","大学英语"); courses.add(cr1); //泛型集合中不能添加泛型规定类型以外的对象;否则会报错; //courses.addAll("能否添加一些奇怪的数字呢"); Course cr2=new Course("2","java基础"); courses.add(cr2); //测试循环遍历 public void testForEach(){ for (Course cr:courses){ System.out.println(cr.id+":"+cr.name); } } }}
添加回答
举报
0/150
提交
取消