我想为2个类中的每一个创建对象,并将对这些对象的引用放置在arrayList 中,然后遍历arrayList。 ArrayList<CarbonFootprint> myCarbon = new ArrayList<CarbonFootprint>();我该如何实施?我没有ArrayList就可以做到。 CarbonFootprint myCarbon = new Car(150332.00); System.out.printf("My Car emits %.2f pounds per year\n", myCarbon.getCarbonFootprint()); (adsbygoogle = window.adsbygoogle || []).push({}); 最佳答案 您可以像这样添加它们:ArrayList<CarbonFootprint> myCarbonList = new ArrayList<CarbonFootprint>();CarbonFootprint myCarbon1 = new Car(150332.00);myCarbonList.add(myCarbon1);CarbonFootprint myCarbon2 = new Car(13434.00);myCarbonList.add(myCarbon2);并显示:for (CarbonFootprint footPrint: myCarbonList) { System.out.printf("My Car emits %.2f pounds per year\n", footPrint.getCarbonFootprint());} (adsbygoogle = window.adsbygoogle || []).push({}); 07-24 18:47