我有一个类,该类接受由商品的名称,价格和数量决定的商品的数组列表,如果要向数组列表中添加多个相同商品,则应该打印每个唯一商品并相应地增加数量。
我的当前代码有2个问题:首先,它仅打印arraylist中的最后一项。其次,它为打印的项目返回了错误的数量。
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()
方法出了问题,但是我不知道是什么。
答案 0 :(得分: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));
}
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();
}
最后您会得到:
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<>();
}
答案 1 :(得分:0)
在toString()
方法中,您有一个for循环,但您只是将最后一项数据保留在循环中。您应该像这样纠正它:
String name = "";
for (Product p: cart) {
quantity += p.getQuantity();
price += p.getPrice();
name += p.getName();
total += p.getTotalPrice();
}