【问题标题】:How do I print every object in an arraylist and correctly count their quantity?如何打印数组列表中的每个对象并正确计算它们的数量?
【发布时间】:2018-12-05 22:35:35
【问题描述】:

我有一个类,它采用由它们的名称、价格和数量确定的项目数组列表,并且应该打印每个唯一项目并在将多个相同项目添加到数组列表时相应地增加数量。

我当前的代码有 2 个问题:首先,它只打印数组列表中的最后一项。其次,它返回的打印项目数量不正确。

package shop;

import java.text.DecimalFormat;
import java.util.ArrayList;

public class ShoppingCart {
static ArrayList<Product> cart;

    public ShoppingCart() {
        ShoppingCart.cart = new ArrayList<Product>();
    }

    @Override
    public String toString() {
        DecimalFormat format = new DecimalFormat ("#.00");
        int quantity = 0;
        double price = 0;
        String name = null;
        double total = 0;
        for (Product p: cart) {
            quantity = p.getQuantity();
            price = p.getPrice();
            name = p.getName();
            total = p.getTotalPrice();  
        }
        return quantity + " * GBP    " + format.format(price) + " " + name            + "    = GBP   " + format.format(total);  
    }
    public void add(Product p) {
            if(cart.size() > 0) {
                for (int i = 0; i < cart.size(); i++) {
                    if(cart.get(i).getName().equals(p.getName()) 
                    && cart.get(i).getPrice() == p.getPrice()) {

                        cart.get(i).setQuantity(cart.get(i).getQuantity() + p.getQuantity());

                    }else {
                        cart.add(p);
                    }
                }
            }else {
            cart.add(p);
        }
    }   

    public static void main(String[] args) {
        ShoppingCart newCart = new ShoppingCart();

        Product apple, apples, milk, caulk, ice, snakes;
        apple = new Product("Apples (4 pack)", 1.20, 1);
        apples = new Product("Apples (4 pack)", 1.20, 2);
        milk = new Product("Milk (1l)", 0.75, 1);
        caulk = new Product("Caulk (1l)", 6.84, 1);
        ice = new Product("Ice (1kg)", 4.30, 1);
        snakes = new Product("Snake (5m)", 32.0, 1);

        newCart.add(apple);
        newCart.add(apple);
        newCart.add(apple);
        newCart.add(apple);
        newCart.add(caulk);
        newCart.add(milk);


        System.out.println(newCart);


    }
}

输出是

4 * GBP    .75 Milk (1l)    = GBP   3.00

我猜我的 toString()add() 方法出了点问题,但我不知道是什么。

【问题讨论】:

  • 我不知道你的输出应该是什么格式,我只是试图找到你的问题并告诉你如何解决它。请把它做得更好,以满足您的需求
  • 总而言之——你应该(几乎总是)declare 使用接口 List,比如 List&lt;Product&gt; cart;,然后在 create 时选择实现实际列表ShoppingCart.cart = new ArrayList&lt;&gt;();(并使用“钻石”运算符&lt;&gt; - 您不必重复类型“产品”)

标签: java arraylist tostring


【解决方案1】:
  1. 您需要实现Product.toString(),例如:

    @Override
    public String toString() {
        DecimalFormat format = new DecimalFormat("#.00");
        return String.format("%d * GBP %5s %15s= GBP %5s", quantity, format.format(price), 
                                                    name, format.format(price * quantity));
    
    }
    
  2. ShoppingCart.toString() 将使用每个Product.toString()Product

    @Override
    public String toString() {
        double total = 0;
        StringBuilder sb = new StringBuilder();
        for (Product p : cart) {
            sb.append(p.toString()).append("\n");
            total += p.getTotalPrice();
        }
        sb.append(String.format("%s%33.2f", "Total :", total));
        return sb.toString();
    }
    
  3. 最后你会得到:

    8 * GBP  1,20 Apples (4 pack)= GBP  9,60
    2 * GBP  6,84      Caulk (1l)= GBP 13,68
    4 * GBP   ,75       Milk (1l)= GBP  3,00
    4 * GBP   ,75       Milk (1l)= GBP  3,00
    Total :                            29,28
    

现在,当您设置一个新的quantity 时,它会影响列表中引用的初始对象,您需要在列表中添加一个副本,同时更改循环:当您找到相同的产品时,更改数量然后返回,并且**仅在循环结束时*如果您没有找到要添加的产品,您需要等待检查所有现有产品:

public void add(Product p) {
    if (cart.size() > 0) {
        for (Product product : cart) {
            if (product.getName().equals(p.getName()) && product.getPrice() == p.getPrice()) {
                product.setQuantity(product.getQuantity() + p.getQuantity());
                return;
            }
        }
        cart.add(new Product(p));
    } else {
        cart.add(new Product(p));
    }
}

Product 类中,一个复制构造函数:

public Product(Product p) {
    this.quantity = p.quantity;
    this.price = p.price;
    this.name = p.name;
}

另外,不要将列表设为静态,每个购物车都有自己的列表

private ArrayList<Product> cart;

public ShoppingCart() {
    cart = new ArrayList<>();
}

【讨论】:

  • 谢谢!这解决了我的打印问题,但数量仍然是应有的两倍,我不知道为什么 Milk 出现两次。这也发生在我创建一个 toString() 方法并在 main 中使用 println() 进行测试之前
  • @kotsoteka 这是因为您正在更改对象本身的属性,所以在将苹果两次放入对象后,其数量将为 2,我会写一些东西来解决这个问题
  • @kotsoteka 完成,我使用了 foreach 循环来避免按索引访问,它更具可读性
【解决方案2】:

toString() 方法中,您有一个 for 循环,但您只是将最后一项数据保留在循环中。你应该像这样更正它:

   String name = "";
   for (Product p: cart) {
        quantity += p.getQuantity();
        price += p.getPrice();
        name += p.getName();
        total += p.getTotalPrice();  
    }

【讨论】:

    猜你喜欢
    • 2019-04-16
    • 1970-01-01
    • 2020-04-05
    • 2014-12-24
    • 1970-01-01
    • 1970-01-01
    • 2020-03-10
    • 1970-01-01
    • 2016-01-14
    相关资源
    最近更新 更多