<<< A custom constructor, cont. | Index | Using the this keyword >>> |
public Product(String code) { this.code = code; Product gadget = ProductDB.getProduct(code); description = gadget.getDescription(); price = gadget.getPrice(); }
<<< A custom constructor, cont. | Index | Using the this keyword >>> |