Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Factory extends Laptop {
- public static void main(String[] args) {
- Laptop apple = new Laptop("china", "macbook pro", "64gb", "m1", "radeon");
- apple.printLaptop();
- }
- public Factory(String country, String mark, String ram, String proceSsor, String graphic) {
- super(country, mark, ram, proceSsor, graphic);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment