0
我想爲兩個類中的每一個創建對象,並將這些對象的引用放置在arrayList中,然後迭代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());