Define Cart and Product Classes
Define Cart and Product Classes
class has the necessary details and Cart class can return these
details.
java
Copy code
import java.util.ArrayList;
import java.util.List;
public Cart() {
this.products = new ArrayList<>();
}
@Override
public String toString() {
return "Product ID: " + id + ", Name: " + name
+ ", Price: $" + price;
}
}