document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class Item {
  2.  
  3. public String name;
  4. public int itemNumber;
  5. public int qty;
  6. public double price;
  7. public Item next;
  8.  
  9. public Item(String name, int itemNumber, int qty, double price) {
  10.  
  11. this.name = name;//parameter dan variabel sama, solved by this
  12. this.itemNumber = itemNumber;
  13. this.qty = qty;
  14. this.price = price;
  15. }
  16.  
  17. public void displayItem() {
  18.  
  19. System.out.println(name + " " + itemNumber + " " + qty + " " + price);
  20. System.out.println();
  21. }
  22.  
  23. }
');