码迷,mamicode.com
首页 > 其他好文 > 详细

函数的复写

时间:2014-10-27 00:17:41      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   java   strong   sp   div   

复写(override),也叫重写、覆盖。当子类继承了父类的成员函数并需要对其函数功能进行修改时,此过程就叫复写。例子如下:

class Person{
      String name;
    
      void introduce(){
           System.out.println("我叫" + name);
      }
}

 

class Student extends Person{
      int age;
     
      //复写
      void introduce(){
           super.introduce(); //调用父类的成员函数
           System.out.println("我" + age);
      }
}

 

class Test{
      public static void main(String args[]){
           Student s = new Student();
           s.name = "zhangsan";
           s.age = 18;
           s.introduce();
      }
}

bubuko.com,布布扣

 在子类中定义的函数(返回值类型、函数和参数列表)与父类中的函数完全相同,这两个函数的关系就是复写。复写父类的函数时,如果只是在父类的基础上增加代码,可用super .函数名减少重复代码,并可以放在函数体内的任意行位置

要明确复写和重载的区别。

函数的复写

标签:style   blog   http   color   ar   java   strong   sp   div   

原文地址:http://www.cnblogs.com/chavez-wang/p/4052996.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!