import java.util.ArrayList;import java.util.List;public class testGenerci { /** * 帶有泛型的List就聲明成功了 *? *? */ public List<Course> courses; public void testGenerci() { this.courses=new ArrayList<Course>(); } public void testadd() { Course cr=new Course("1","數(shù)據(jù)結(jié)構(gòu)"); courses.add(cr); } public void testForEach(){ for(Course cr:courses){ System.out.println(cr.id+":"+cr.name); } } public static void main(String[] args) { // TODO Auto-generated method stub testGenerci tg =new testGenerci(); tg.testadd(); tg.testForEach(); }}看了很多人的答案感覺很多人的基礎(chǔ)知識學(xué)的不行,這段代碼的錯(cuò)誤在于構(gòu)造方法應(yīng)該沒有返回類型
添加回答
舉報(bào)
0/150
提交
取消