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, 21.06.2019 19:40
Consider the following generator matrix: g= (1 0 0 0 1 0 0 0 1 1 1 1 1 0 1 1 1 0) find all the codewords generated by this generator matrix. determine the number of errors that this code will detect. determine the number of errors that this code will correct. prove that a linear code's minimum weight is equivalent to its minimum distance. that is, where c is a linear code, dist(c) = wh(c)
Answers: 1
question
Computers and Technology, 22.06.2019 02:00
What is the largest decimal number that can be represented by a binary number with 4 place values? (remember, each place in a binary number has a value of a power of 2, starting in the ones place with 20.)
Answers: 3
question
Computers and Technology, 22.06.2019 10:00
Create a word problem that involves calculating the volume and surface area of a three-dimensional object. cube: surface area 6 s2 , volume s3
Answers: 3
question
Computers and Technology, 23.06.2019 04:31
Q14 what is most important for you to choose before you build a network? a. private network b. nos c. network media d. network protocol e. directory service
Answers: 1
You know the right answer?
(Recommended Project: Combining Composition and Inheritance) In this chapter, we created the Commiss...
Questions
question
Mathematics, 15.01.2022 17:40
question
Mathematics, 15.01.2022 17:50
question
Mathematics, 15.01.2022 17:50
question
Mathematics, 15.01.2022 17:50
question
Mathematics, 15.01.2022 17:50