<<< interface implementation example | Index | Abstract class compared to interface >>> |
Code that uses the print method of the Product class
Printable product = new Product( "123", "Gadget", 15.95 ); product.print();
Resulting output:
Code: 123 Description: Gadget Price: $15.95
<<< interface implementation example | Index | Abstract class compared to interface >>> |