Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKumar Swamy
Courses Plus Student 1,324 PointsUncommented the code after comment, still not able to execute
Getting an error: "Did you uncomment the line after comment", even after removing the comment
public class Example {
public static void main(String[] args) {
ShoppingCart cart = new ShoppingCart();
Product pez = new Product("Cherry PEZ refill (12 pieces)");
cart.addItem(pez, 5);
/* Since a quantity of 1 is such a common argument when adding a product to the cart,
* your fellow developers have asked you to make the following code work, as well as keeping
* the ability to add a product and a quantity.
*/
Product dispenser = new Product("Yoda PEZ dispenser");
/* Uncomment the line following this comment,
after adding a new method using method signatures,
to solve their request in ShoppingCart.java
*/
cart.addItem(dispenser);
}
}
public class ShoppingCart {
public void addItem(Product item){
System.out.printf(" Adding %s to the cart", item.getName());
}
public void addItem(Product item, int quantity) {
System.out.printf("Adding %d of %s to the cart.%n", quantity, item.getName());
/* Other code omitted for clarity. Please imagine
lots and lots of code here. Don't repeat it.
*/
}
}
public class Product {
/* Other code omitted for clarity, but you could imagine
it would store price, options like size and color
*/
private String mName;
public Product(String name) {
mName = name;
}
public String getName() {
return mName;
}
}
2 Answers
Steve Hunter
57,712 PointsHi Kumar,
The task here is to overload the addItem
method so that it can be called more simply to just add a single item.
The addItem
method is very complex - we can't see the code behind the scenes but it'll mnage database read/write and update web pages etc. We can't duplicate that code, but it must be run when an item is added. The comments say:
/* Other code omitted for clarity. Please imagine
lots and lots of code here. Don't repeat it.
*/
The original method takes an item and a quantity. The new method just needs an item as it'll default the quantity to one. How to do this? You've correctly amended the method signature so that's done. But there's nothing in there to actually add an item.
How about using the code that's already written - we know that works, right?
public void addItem(Product item){
addItem(item, 1);
}
To avoid repeating any code; use the original code. Just pass the item requested to the original method, inserting 1 as the quantity.
Hope that helps,
Steve.
Kumar Swamy
Courses Plus Student 1,324 PointsThanks for the reply Steve...got the logic...
Steve Hunter
57,712 PointsNo problem! That's an interesting challenge - with a very useful solution.