コード public class Food { private String foodname; private int calorie; public Food(String foodname, int calorie){ this.foodname = foodname; this.calorie = calorie; } public void setCalorie(int calorie){ this.calorie = calorie; } public int getCalorie(){ return calorie ; } }
getterのreturnの後にthis.がつかないのはなぜですか?
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/05 06:16