Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class CarDemo {
- public static void main(String[] args) {
- // Creating 2 car objects using the parameter value of Model and Color enum
- Car car1 = new Car(2014, Model.SUV, Color.RED);
- Car car2 = new Car(2018, Model.SEDAN, Color.ORANGE);
- // Printing the 2 car object data
- car1.print();
- System.out.println(); // For space
- car2.print();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement