エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
まずはシンプルなItemクラス。 public class Item { private String name = null; private double price... まずはシンプルなItemクラス。 public class Item { private String name = null; private double price = 0.0; private String descr = ""; public Item(String name, double price) { this.name = name; this.price = price; } public Item() { } public String getName() { return name; } public double getPrice() { return price; } public String getDescr() { return descr; } public void setDescr(String descr) { this.descr = desc