subject

(Recommended Project: Combining Composition and Inheritance) In this chapter, we created the CommissionEmployee– inheritance hierarchy to model the relationship between two types of employees and how to calculate the earnings for each. Another way to look at the problem is that CommissionEmployees and are each Employees and that each has a different CompensationModel object. A CompensationModel would provide an earnings method. Subclasses of CompensationModel would contain the details of a particular Employee’s compensation: —For Employees CompensationModel subclass would contain grossSales and commissionRate instance variables, and would define earnings to return grossSales * commissionRate. —For Employees who are paid a base salary and commission, this CompensationModel subclass would contain instance variables grossSales, commissionRate and baseSalary and would define earnings to return baseSalary + grossSales * commissionRate. Class Employee’s earnings method would simply call the composed CompensationModel’s earningsmethod and return its result. This approach is more flexible than our original hierarchy. For example, consider an Employee who gets promoted. With the approach described here, you can simply change that Employee’s CompensationModel by assigning the composed CompensationModel reference an appropriate subclass object. With the CommissionEmployee– hierarchy, you’d need to change the employee’s type by creating a new object of the appropriate class and moving data from the old object into the new one. Implement the Employee class and CompensationModel hierarchy discussed in this exercise. In addition to the firstName, lastName, socialSecurityNumber and CompensationModel instance variables, class Employee should provide: A constructor that receives three Strings and a CompensationModel to initialize the instance variables. A set method that allows the client code to change an Employee’s CompensationModel. An earnings method that calls the CompensationModel’s earnings method and returns its result. When you invoke method earnings via the superclass CompensationModel reference to a subclass object (of type or ), you might expect superclass CompensationModel’s earnings method to execute. What actually happens? The subclass object’s earnings method executes. This is called polymorphic behavior, which we explore in Chapter 10. In your test application, create two Employee objects—one with a CommissionCompensation-Model and one with a —then display each Employee’s earnings. Next, change each Employee’s CompensationModel dynamically and redisplay each Employee’s earnings. In Chapter 10 ’s exercises, we’ll examine how to implement CompensationModel as an interface rather than a class.
Java language

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 09:00
What is one way in which tablets differ from laptops and notebooks? tablets are designed for touch-based interaction. tablets are designed to be used as desktops. tablets are designed for input via a keyboard and mouse. tablets are designed to be larger than laptops.
Answers: 1
question
Computers and Technology, 23.06.2019 17:10
Ac++an of of pi. in , pi is by : pi = 4 – 4/3 + 4/5 – 4/7 + 4/9 - 4/11 + 4/13 - 4/15 + 4/17 . ., to pi (9 ). , if 5 to pi,be as : pi = 4 - 4/3 + 4/5 - 4/7 + 4/9 = 4 – 1. + 0.8 - 0. + 0. = 3.. atoofbe to pi?
Answers: 2
question
Computers and Technology, 25.06.2019 01:00
When a new name is registered on the internet, the process can take two hours to four hours four hours to three days two hours to two days one hour to eight hours
Answers: 1
question
Computers and Technology, 25.06.2019 08:20
The binary numbering system uses only two symbols—the digits 0 and 1—to represent all possible numbers. - true or false
Answers: 3
You know the right answer?
(Recommended Project: Combining Composition and Inheritance) In this chapter, we created the Commiss...
Questions
question
Mathematics, 27.04.2021 01:00
question
Mathematics, 27.04.2021 01:00
question
Mathematics, 27.04.2021 01:00
Questions on the website: 13722363