Assignment: Write the class XXXX_Worker with constructors, accessors, mutuators, and a toString method. A Worker has a Worker Name and Number. Write the class XXXX_ProductionWorker which is a subclass of Worker. The production worker has a shift number (values: 1 or 2) and an Hourly pay rate. A shift number of 1 means the day shift and 2 means the night shift. Write the class XXXX_ShiftSupervisor which is a subclass of Worker. The shift supervisor is a salaried worker who supervises a shift. The shift supervisor has a yearly bonus field. The yearly bonus is earned at year end based on performance. Write a class, XXXX_TestWorker, which does the following: Creates one Shift Supervisor object from information entered by the user. Creates an Array of Production Workers that can hold 3 objects. Itcreates3ProductionWorkerobjectsfrominformationenteredbytheuser Prints the information about each object in the format shown below using the toString methods of the classes: Include the following for the XXXX_ProductionWorker , XXXX_ShiftSupervisor classes: Instance variables, 2 constructors, getters, setters, toString method. Include the following for the XXXX_TestWorker class: Scanner, array of Production Workers, loop to receive the user input for production workers. Use the toString method of each class to print the information Sample output: Enter the name of the shift supervisor John SmithEnter the Worker number for the supervisor 1 Enter the Bonus amount for the supervisor 10000Enter the name of the Production Worker Terry Enter the Worker number 2 1 CPS 2231 Computer Organization and Programming Enter the shift number 1 Enter the Hourly pay 15 Enter the name of the Production Worker JohnEnter the Worker number3 Enter the shift number 2 Enter the Hourly pay 16 Enter the name of the Production Worker Mary Enter the Worker number 4 Enter the shift number 1 Enter the Hourly pay 15 Printing the Shift SupervisorName John Smith Worker Number 1 Bonus 10000.0 Printing the Production WorkersName Terry Worker Number 2 Shift 1 Pay Rate 15.0 Name John Worker Number 3 Shift 2 Pay Rate 16.0 Name Mary Worker Number 4 Shift 1 Pay Rate 15.0
OOPs
In today's technology-driven world, computer programming skills are in high demand. The object-oriented programming (OOP) approach is very much useful while designing and maintaining software programs. Object-oriented programming (OOP) is a basic programming paradigm that almost every developer has used at some stage in their career.
Constructor
The easiest way to think of a constructor in object-oriented programming (OOP) languages is:
Assignment:
-
Write the class XXXX_Worker with constructors, accessors, mutuators, and a toString
method. A Worker has a Worker Name and Number.
-
Write the class XXXX_ProductionWorker which is a subclass of Worker. The production worker has a shift number (values: 1 or 2) and an Hourly pay rate. A shift number of 1 means the day shift and 2 means the night shift.
-
Write the class XXXX_ShiftSupervisor which is a subclass of Worker. The shift supervisor is a salaried worker who supervises a shift. The shift supervisor has a yearly bonus field. The yearly bonus is earned at year end based on performance.
-
Write a class, XXXX_TestWorker, which does the following:
-
Creates one Shift Supervisor object from information entered by the user.
-
Creates an Array of Production Workers that can hold 3 objects.
-
Itcreates3ProductionWorkerobjectsfrominformationenteredbytheuser
-
Prints the information about each object in the format shown below using the
toString methods of the classes:
-
-
Include the following for the XXXX_ProductionWorker , XXXX_ShiftSupervisor classes: Instance variables, 2 constructors, getters, setters, toString method.
-
Include the following for the XXXX_TestWorker class: Scanner, array of Production Workers, loop to receive the user input for production workers. Use the toString method of each class to print the information
Sample output:
Enter the name of the shift supervisor John Smith
Enter the Worker number for the supervisor 1Enter the Bonus amount for the supervisor 10000
Enter the Worker number 2
Enter the name of the Production Worker Terry
1
CPS 2231 Computer Organization and Programming
Enter the name of the Production Worker John
Enter the Worker number
3
Printing the Shift Supervisor
Name John Smith Worker Number 1 Bonus 10000.0
Printing the Production Workers
Name Terry Worker Number 2 Shift 1 Pay Rate 15.0 Name John Worker Number 3 Shift 2 Pay Rate 16.0 Name Mary Worker Number 4 Shift 1 Pay Rate 15.0
Trending now
This is a popular solution!
Step by step
Solved in 6 steps with 1 images