In this problem, you are going to create an Employee superclass and an HourlyEmployee subclass. The Employee class will hold the employee’s name and annual salary. You should have getters for both instance variables, but only a setter for the salary. In the HourlyEmployee class, you will add an hours instance variable as well as a method to set and get the hourly salary. You are not storing the hourly salary, but rather converting it to an annual salary. To convert an houlry salary to an annual salary, multiply the hourly rate by the number of hours per week and then by 52. You will need to do the reverse to get the hourly salary. Both classes should have a toString and examples are in the starter code. Be sure to test your classes in the EmployeeTester class!     public class EmployeeTester { public static void main(String[] args) { // Start here! } }   public class HourlyEmployee extends Employee { private double hoursPerWeek; // Call the Employee constructor and pass it a calculated annual salary public HourlyEmployee(String name, double hourlySalary, double hoursPerWeek){ } // Get the annual salary from the superclass and convert it back // to hourly. public double getHourlySalary(){ } // Use the input to set the annual salary in the superclass public void setHourlySalary(double hourlySalary){ } /** * Example output: * Mike makes $18.0 per hour */ public String toString(){ } }     public class Employee { private String name; private double salary; public Employee(String name, double annualSalary){ } public String getName(){ } public double getAnnualSalary(){ } public void setAnnualSalary(double annualSalary){ } /** * Example output: * Mr. Karel makes $75000.0 per year */ public String toString(){ } }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter11: Inheritance And Composition
Section: Chapter Questions
Problem 9PE
icon
Related questions
Question

In this problem, you are going to create an Employee superclass and an HourlyEmployee subclass. The Employee class will hold the employee’s name and annual salary. You should have getters for both instance variables, but only a setter for the salary. In the HourlyEmployee class, you will add an hours instance variable as well as a method to set and get the hourly salary. You are not storing the hourly salary, but rather converting it to an annual salary. To convert an houlry salary to an annual salary, multiply the hourly rate by the number of hours per week and then by 52. You will need to do the reverse to get the hourly salary. Both classes should have a toString and examples are in the starter code. Be sure to test your classes in the EmployeeTester class!

 

 

public class EmployeeTester
{
public static void main(String[] args)
{
// Start here!
}
}

 

public class HourlyEmployee extends Employee {

private double hoursPerWeek;

// Call the Employee constructor and pass it a calculated annual salary

public HourlyEmployee(String name, double hourlySalary, double hoursPerWeek){


}

// Get the annual salary from the superclass and convert it back
// to hourly.
public double getHourlySalary(){

}

// Use the input to set the annual salary in the superclass

public void setHourlySalary(double hourlySalary){

}

/**
* Example output:
* Mike makes $18.0 per hour
*/

public String toString(){

}
}

 

 

public class Employee {

private String name;
private double salary;

public Employee(String name, double annualSalary){

}

public String getName(){

}

public double getAnnualSalary(){

}

public void setAnnualSalary(double annualSalary){

}

/**
* Example output:
* Mr. Karel makes $75000.0 per year
*/

public String toString(){

}
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 4 images

Blurred answer
Knowledge Booster
Software Development
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning