1

コードのこのセクションで、数量を非常に簡単に更新できるようにする必要があります。

import java.util.HashMap;
import java.util.Map;


public class StockData {

private static class Item {
    Item(String n, double p, int q) {
        name = n;
        price = p;
        quantity = q;
    }

    // get methods
    public String getName() { return name; }
    public double getPrice() { return price; }
    public int getQuantity() { return quantity; }

    // instance variables 
    private String name;
    private double price;
    private int quantity;
}

// with a Map you use put to insert a key, value pair 
// and get(key) to retrieve the value associated with a key
// You don't need to understand how this works!
private static Map<String, Item> stock = new HashMap<String, Item>();

static {
    // if you want to have extra stock items, put them in here
    // use the same style - keys should be Strings
    stock.put("00", new Item("Bath towel", 5.50, 10));
    stock.put("11", new Item("Plebney light", 20.00, 5));
    stock.put("22", new Item("Gorilla suit", 30.00, 7));
    stock.put("33", new Item("Whizz games console", 50.00, 8));
    stock.put("44", new Item("Oven", 200.00, 4));
}

public static String getName(String key) {
    Item item = stock.get(key);
    if (item == null) return null; // null means no such item
    else return item.getName();
}

public static double getPrice(String key) {
    Item item = stock.get(key);
    if (item == null) return -1.0; // negative price means no such item
    else return item.getPrice();
}

public static int getQuantity(String key) {
    Item item = stock.get(key);
    if (item == null) return -1; // negative quantity means no such item
    else return item.getQuantity();
}

// update stock levels
// extra is +ve if adding stock
// extra is -ve if selling stock
public static void update(String key, int extra) {
    Item item = stock.get(key);
    if (item != null) item.quantity += extra;
}

}

更新ページ用の GUI を作成しましたが、それに追加するメソッドが必要ですか?

些細な質問で申し訳ありませんが、どこかから始めなければなりません。

ご協力いただきありがとうございます。

4

2 に答える 2

1

本当に問題が発生したかどうかはわかりませんが、これはアイテムの数量を増やすための私の提案です.

次のようなパブリック メソッドを追加するだけです。

public void addQuantity(int q) { quantity += q }

あなたがこれを意味したことを願っています。

于 2013-03-04T11:18:36.227 に答える
0

このメソッドを追加します。

public void setQuantity(int q){数量= q}

また、 http://docs.oracle.com/javase/tutorial/から読み始めることもできます。

于 2013-03-04T11:14:51.167 に答える