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());