Java では、呼び出し元の関数で複数のプリミティブ変数の累積合計を取得するにはどうすればよいですか。別の方法で追加したいと思います。しかし、Java ではプリミティブ型を値で渡すので、どうすればよいでしょうか?
public void methodA(){
int totalA = 0;
int totalB = 0;
Car aCar = getCar() ; //returns a car object with 2 int memebers a & b
methodB(aCar);
methodB(bCar);
methodB(cCar);
sysout(totalA); // should print the sum total of A's from aCar, bCar and cCar
sysout(totalB); // should print the sum total of b's from aCar, bCar and cCar
}
private methodB(aCar){
totalA += aCar.getA();
totalB += aCar.getB();
}