簡體   English   中英

在Java中有效遍歷具有多個變量類型的對象數組

[英]Efficiently Looping through Object array with Multiple Variable types in Java

我正在用Java寫一個簡單的腳本,該腳本正在調用另一個包含我所有信息的類。

我將信息保存在Object [] Arrays的調用類中,並且打算調用腳本來獲取該數組。

現在,函數看起來像這樣。

public void tradeShop() {

    /*
     *Variables must be initialized in order to call shopTrader
     *The values are just non-null placeholders and they are 
     *replaced with the same values in the tradeValues Object array.
     */
    String targetName = "NPC Name";
    String itemName = "Item Name";
    int itemQuantity = 1;
    int minCoins = 1;
    int minBuy = 1;
    boolean stackable = false;

    Object[] tradeValues = shop.defaultValues;

    for (int i = 0; i < tradeValues.length; i++) {
        if(String.class.isInstance(tradeValues[i])) {//String check
            if(i==0) { //0 is NPC Name
                targetName = (String) tradeValues[i];
            } else if (i==1) { //1 is Item Name
                itemName = (String) tradeValues[i];
            }
        } else if (Integer.class.isInstance(tradeValues[i])) { //Int check
            if(i==2) { //2 is Item Quantity
                itemQuantity = (Integer) tradeValues[i];
            } else if (i==3) { //3 is Minimum coins
                minCoins = (Integer) tradeValues[i];
            } else if (i==4) { //4 is the Minimum Buy limit
                minBuy = (Integer) tradeValues[i];
            }
        } else if (Boolean.class.isInstance(tradeValues[i])) { //Bool check
                stackable = (Boolean) tradeValues[i]; //5 is the item Stackable 
        } else {
            //TODO: Implement exception
        }
    }

    //Calls ShopTrader() method shopTrader
    ShopTrader trade = new ShopTrader();
    trade.shopTrader(targetName, itemName, itemQuantity, minCoins, minBuy, worldHop, stackable);
}

我覺得使用這樣的for循環對我來說不是遍歷這些對象的正確方法,我不必為每個變量檢查​​i ==。

這也阻礙了我向shopTrader方法添加重載,因為我必須為每個重載編寫一個全新的for循環。

有誰有一個更優雅的解決方案來從此數組中獲取變量?

我認為,與其將所有信息存儲在Object []中,您可能想要創建一個新類來充當數據結構,即

public class TradeValue {
    String targetName;
    int itemQuantity;
    // etc.

    String getTargetName() {
        return targetName;
    }

    String getItemQuantity() {
        return itemQuantity;
    }
    // etc
}

然后,您可以直接訪問信息

TradeValue defaultValues = shop.defaultValues;
String targetName = defaultValues.getTargetName();
int itemQuantity = defaultValues. getItemQuantity();
...

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM