コンストラクターを次のように設定しました。
public class VendingMachine {
private double currentBalance;
private double itemPrice;
private double totalCollected;
public VendingMachine(double itemCost) {
currentBalance = 0;
totalCollected = 0;
itemPrice = itemCost;
}
...
}
私の質問は、 double の引数を取り込んで上記のようにコンストラクターを設定することとの違いは何ですかitemCost
。
それを作るのとは対照的に、違いは何ですか:
this.itemPrice = itemCost;