Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Define a class named Person and its two subclasses named Student and Employee. Make Faculty and Staff subclasses of Employee. A person has a name,
Define a class named Person and its two subclasses named Student and Employee.
Make Faculty and Staff subclasses of Employee. A person has a name, address,
phone number, and email address and birthDate. A student has a department, and a
class status first year, second year, third year, fourth year, fifth year An employee
has an office, salary, and date hired. Use the java.util.Date class to create objects
for birthDate and date hired. A faculty member has office hours and a rank. A staff
member has a title. Override the toString and equal methods in each class.
toString should return all info of the object. equal method must check equality
of employees based on salary and name, and equality of students based on name
and class status ie two employees are considered equal if they have the same name
and salary and two students are considered equal if they have the same name and
class status.
Write a test program in which you define objects from employee and student and
make calls to at least methods.
Notes:
Chose reasonable data types for all attributes.
In every class there must be at least two constructors a noarg constructor a
constructor with parameters
Define setter and getter methods in all classes.
You have to use the this and super keywords at least twice each.
USe the name is "Shay" and the number is
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started