Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In Java please: In the next set of labs we will work on these classes: ExampleHierarchy.docx Download ExampleHierarchy.docx More details of these classes are in

In Java please:

In the next set of labs we will work on these classes: ExampleHierarchy.docx Download ExampleHierarchy.docx

image text in transcribed

More details of these classes are in this PowerPoint: Inheritance.ppt Download Inheritance.ppt

1. Create a class called Person. A Person has a name - this is the only attribute. Name is a String, and may have spaces.

Create a default constructor that sets name to null. Create another constructor that has one parameter, the name. Create all accessors and modifiers. Then create a method to determine if two Person objects have the same name. This method is called "hasSameName" and returns a boolean. Finally, include a writeOutput method

public void WriteOutput() { System.out.println( "Name: " + name); }

2. Create a class named Employee, derived from Person .

An Employee inherits an employee's name from the class Person. In addition, an Employee has an annual salary (represented by a single value of type double), a hire date that gives the year hired (as a single value of type int), an identification number of type int, and a department of type String. Write all constructors, accessors, mutators, a WriteOutput method, and an equals method that returns true if two employees are equal, false otherwise . Two employees are equal if their IDs are equal. Write a main method to FULLY test your class definitions.

THEN upload ONLY your Person.java and Employee.java file to Canvas.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases Illuminated

Authors: Catherine M. Ricardo

1st Edition

0763733148, 978-0763733148

More Books

Students also viewed these Databases questions

Question

U11 Informing Industry: Publicizing Contract Actions 317

Answered: 1 week ago