g4share / javaLearning

0 stars 0 forks source link

OOP Principles - Inheritance #5

Open g4share opened 8 months ago

g4share commented 8 months ago

Write a Java program to create a class known as Person with methods called getFirstName() and getLastName(). Create a subclass called Employee that adds a new method named getEmployeeId() and overrides the getLastName() method to include the employee's job title.