gpt4 book ai didi

java - 更改存在对象的 arraylist 字段的值

转载 作者:行者123 更新时间:2023-12-01 14:32:09 27 4
gpt4 key购买 nike

我需要一些帮助,因为我被困住了。我有一个名为 orderList 的 ArrayList,类型为 ItemOrdered(int quantity,Item item)。我想为 ArrayList 中存在给定项目的项目数量设置一个新值。我尝试了一切,但没有成功。

//place new order from buyer class
public void placeOrder(int quantity, Item item) {
//ItemOrdered newitemordered = new ItemOrdered(quantity,item );
ShoppingCart shoppingCart = new ShoppingCart();
shoppingCart.addItemOrdered(quantity,item);

}
//call placeOrder method
buyer.placeOrder(quantity,eshop.ItemListPen.get(x));
import java.util.ArrayList;

public class ShoppingCart {
public ArrayList<ItemOrdered> orderList = new ArrayList<ItemOrdered>();


public void addItemOrdered(int quantity,Item item) {
if(item.getStock() >= quantity && (!item.equals(orderList))){
ItemOrdered newitemordered = new ItemOrdered(quantity,item);
orderList.add(new ItemOrdered(quantity,item));
}else if(item.getStock() < quantity){
System.out.println("Sorry,this quantity is not available in stock.");
}else{

orderList.get(item).setQuantity(quantity);
System.out.println("nothing");
}

}

}
public class ItemOrdered {
static Item item;
private int quantity;
public ItemOrdered(int quantity, Item item){
this.quantity=quantity;
this.item=item;
}

public void setQuantity(int x){
quantity=quantity + x;
}

}



最佳答案

当库存大于或等于数量时,您似乎总是要输入 if-else if-elseif block ,因为第二个条件 (!item.equals(orderList)) 将为真。此条件应检查列表是否包含项目,而不是列表和项目是否相等。下一个难题是 orderList 中的对象是 ItemOrdered 对象而不是 Item 对象。在这种情况下,只需执行 !orderList.contains(item) 也将始终返回 true。

您可以通过将包含 Item 对象的列表作为您的 ShoppingCart 的一部分来解决此问题,或者添加一个新方法来遍历 orderList 并针对列表中的每个 Item 检查 item

选项 #1 - 将新的 Item 对象列表添加到 ShoppingCart:

public class ShoppingCart {
public ArrayList<ItemOrdered> orderList = new ArrayList<ItemOrdered>();

// This could also be public if you needed for some reason, but you could also achieve that by adding getter and setter methods
// depending on version of Java, you may need to include Item in <> when creating the new list: new ArrayList<Item>()
private ArrayList<Item> itemsInCart = new ArrayList<>();

public void addItemOrdered(int quantity,Item item) {
if(item.getStock() >= quantity && !itemsInCart.contains(item)){
ItemOrdered newitemordered = new ItemOrdered(quantity,item); // this could be removed, and you just create the new ItemOrdered within .add() on the next line
orderList.add(newitemordered);
itemsInCart.add(item); // have to update the new list of items
}else if(item.getStock() < quantity){
System.out.println("Sorry,this quantity is not available in stock.");
}else{
orderList.get(item).setQuantity(quantity);
System.out.println("nothing");
}

}

}

选项 #2 - 遍历 orderList:

public class ShoppingCart {
public ArrayList<ItemOrdered> orderList = new ArrayList<ItemOrdered>();

public void addItemOrdered(int quantity,Item item) {
if(item.getStock() >= quantity && !isItemInCart(item)){
orderList.add(new ItemOrdered(quantity,item));
}else if(item.getStock() < quantity){
System.out.println("Sorry,this quantity is not available in stock.");
}else{
orderList.get(item).setQuantity(quantity);
System.out.println("nothing");
}

}

private boolean isItemInCart(Item item){
for(ItemOrdered itemOrdered : orderList){
if(itemOrdered.getItem().equals(item)){
return true;
}
}
// Item is not in cart
return false;
}

}
public class ItemOrdered {
static Item item;
private int quantity;
public ItemOrdered(int quantity, Item item){
this.quantity=quantity;
this.item=item;
}

public void setQuantity(int x){
quantity=quantity + x;
}

public Item getItem(){
return this.item;
}

}

不同选项的注意事项:

  • 选项 1:
    • 简单
    • 必须维护第二个列表
  • 选项 2:
    • 需要更多的前期工作
    • 您不必维护两个包含相似数据的列表
    • 如果 orderList 非常大(对于大多数实际情况来说可能不是什么大问题)
    • 您可能希望重写 Item.equals() 方法以准确定义要比较的内容以确定两个项目是否相等

关于java - 更改存在对象的 arraylist 字段的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62164393/

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