totalCost には getter メソッドと setter メソッドがあるため、totalCost というローカル プライベート変数が 1 つだけの支払いクラスがあります。TotalCost は、支払いクラスの複数のメソッドで使用される唯一のローカル変数であるためです。このクラスにはゲッターとセッターを追加する必要がありますか?
public class Payment {
private int totalCost;
public Payment(){
}
public int calculateItemcost(int itemQuantity, int itemPrice){
return itemPrice * itemQuantity;
public int calculateTotalcost(int itemCost){
return totalCost = totalCost + itemCost;
}
public int calculateBalance(int clickedValue, int totalCost){
return this.totalCost = totalCost - clickedValue;
public int getTotalcost(){
return this.totalCost;
}
public void setTotalcost(int totalcost) {
this.totalCost = totalcost;
}
}