免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 762 | 回复: 0
打印 上一主题 下一主题

CoreJava_7th_Edition学习(连载五) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-07-21 22:48 |只看该作者 |倒序浏览
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
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP