0

ハッシュマップにあるこのコードを整理するのに問題があります - double (price) に設定された同様のコードを整理するのにも助けが必要です。ありがとうございました。

@SuppressWarnings("unused")
public class Inventory {

    Scanner in = new Scanner(System.in);
    ArrayList<Sellable> groceries;
    HashMap<String, Integer> stock;

    public Inventory() {
        groceries = new ArrayList<Sellable>();
        stock = new HashMap<String, Integer>();
//HARDCODING...:
        Sellable n1 = new Produce("Corn", 3, 5.00);
        Sellable n2 = new Snack("Natural Popcorn Seeds", 2.50);
        Sellable n3 = new Produce("Potatoes", 3, 5.00);
        Sellable n4 = new Snack("Organic Potato Chips", 2.50);
        Sellable n5 = new Produce("Apples", 5, 1.75);
        Sellable n6 = new Snack("Apple Juice - 128 oz.", 3.50);
        Sellable n7 = new Produce("Oranges", 5, 1.75);
        Sellable n8 = new Snack("Orange Juice - 128 oz.", 3.50);
//ADD TO HASHMAP
        groceries.add(n1);
        groceries.add(n2);
        groceries.add(n3);
        groceries.add(n4);
        groceries.add(n5);
        groceries.add(n6);
        groceries.add(n7);
        groceries.add(n8);
//PUT UP FOR PRINTING
        stock.put(n1.getName(), 50);
        stock.put(n2.getName(), 100);
        stock.put(n3.getName(), 50);
        stock.put(n4.getName(), 100);
        stock.put(n5.getName(), 50);
        stock.put(n6.getName(), 100);
        stock.put(n7.getName(), 50);
        stock.put(n8.getName(), 100);
    }

//Sorting Method 1
    @SuppressWarnings("unchecked")
    public void sortByName() {
        groceries = new ArrayList<Sellable>();
        stock = new HashMap<String, Integer>();
        {
            if (stock != null) {
                List<Sellable> groceries = new ArrayList<Sellable>();
                stock.addAll(((Entry<String, Integer>) stock).getValue(), groceries);
                Collections.sort(groceries, new Comparator<Sellable>() {
                    public int compare(Sellable product1, Sellable product2) {
                        try {
                            Sellable choice1 = (Sellable) product1;
                            Sellable choice2 = (Sellable) product2;
                            //LESS THAN
                            if (choice1.getName().compareTo(choice2.getName()) < 0) {
                                return -1;
                            } //GREATER THAN
                            else if (choice1.getName().compareTo(choice2.getName()) > 0) {
                                return 1;
                            } //EQUALS
                            else {
                                return 0;
                            }
                        } catch (ClassCastException FAIL) {
                            return -2;
                        }
                    }
                });
            }
        }
    }
}
4

3 に答える 3

0

申し訳ありませんが、コードも質問も意味がありません。

  • あなたsortByNameは と の両方groceriesを破壊していstockます。

  • 次に、(現在) 空の HashMap から ArrayList にコピーしようとしているようです。でもナンセンスだから

    • 存在しないメソッド ( HashMap.addAll)を使用しようとしています。

    • あなたは を にキャストしHashMapていますEntry

    • 等々。

  • Comparator名前による」ソートにはもっともらしいように見えますが、ClassCastException が発生した場合に -2 を返すコードは間違っています。例外が発生した場合は、例外を伝播させる必要があります。Comparator で実際に型キャストを行うわけではありません。引数の型が正しい。Sellable(aを a にキャストするSellable? なぜ ???)

于 2013-11-11T16:36:16.400 に答える
0

コード行を削除してください。

groceries = new ArrayList<Sellable>();

stock = new HashMap<String, Integer>();

あなたの方法からsortByName().

この行はgroceriesandstockを空にリセットします。

于 2013-11-11T16:32:00.980 に答える