- 论坛徽章:
- 0
|
Chapter5
Classes, Superclasses, and Subclasses(类,超类和子类)
如果一个子类的方法(如:getSalary)覆盖了超类的方法(如:getSalary),那么当子类要调用超类中方法时须加super关键词(即super.getSalary),以指明调用的是超类中方法,否则将调用子类中的同名方法,也就是调用最接近这个方法的类的方法(听起来好别扭哦 ^_^)
However, some of the superclass methods are not appropriate for
the Manager subclass. In particular, the getSalary method
should return the sum of the base salary and the bonus. You need to supply a new
method to override the superclass method:
class Manager extends Employee
{
. . .
public double getSalary()
{
. . .
}
. . .
}
How can you implement this method? At first glance, it appears
to be simple: just return the sum of the salary and bonus
fields:
public double getSalary()
{
return salary + bonus; // won't work
}
However, that won't work. The getSalary method of the
Manager class has no direct access to the
private fields of the superclass. This means that the getSalary
method of the Manager class cannot directly access the salary
field, even though every Manager object has a field called
salary. Only the methods of the Employee class have access to
the private fields. If the Manager methods want to access those private
fields, they have to do what every other method does—use the public interface,
in this case, the public getSalary method of the Employee
class.
So, let's try this again. You need to call getSalary
instead of simply accessing the salary field.
public double getSalary()
{
double baseSalary = getSalary(); // still won't work
return baseSalary + bonus;
}
The problem is that the call to getSalary simply calls
itself, because the Manager class has a
getSalary method (namely, the method we are trying to implement). The
consequence is an infinite set of calls to the same method, leading to a program
crash.
We need to indicate that we want to call the getSalary
method of the Employee superclass, not the current class. You use the
special keyword super for this purpose. The call
super.getSalary()
calls the getSalary method of the Employee
class. Here is the correct version of the getSalary method for the
Manager class:
public double getSalary()
{
double baseSalary = super.getSalary();
return baseSalary + bonus;
}
this关键词有两种含义:
1、表示当前类的一个引用
2、调用同一个的类的另一个构造器
同样,super关键词也有两种含义:
1、
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/20527/showart_144002.html |
|