gpt4 book ai didi

java - 在 Java 中高效地循环访问具有多个变量类型的对象数组

转载 作者:行者123 更新时间:2023-12-02 09:48:40 25 4
gpt4 key购买 nike

我正在用 Java 编写一个简单的脚本,该脚本调用另一个保存我所有信息的类。

我将我的信息保存在 Object[] 数组中的被调用类中,并且我计划调用脚本来获取该数组。

现在该函数看起来像这样。

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();
...

关于java - 在 Java 中高效地循环访问具有多个变量类型的对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56480728/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com