码迷,mamicode.com
首页 > 编程语言 > 详细

java-Cannot reduce the visibility of the inherited method from 父类

时间:2014-07-18 20:39:24      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:style   java   color   re   c   rom   

在Java里面,当A类继承B类,在B类里面重写(或叫覆写/override)A类的方法时,有一个规定,那就是:子类的该方法的权限修饰符范围应该是大于等于父类。

  class A{

    protected method() { }

  }

  class B extends A{

    private method(){ }

    //private是错误的,会出现错误提示:Cannot reduce the visibility of the inherited method from B

    //将protected,public或者缺省(不加)都是可以正常编译。

  }

java-Cannot reduce the visibility of the inherited method from 父类,布布扣,bubuko.com

java-Cannot reduce the visibility of the inherited method from 父类

标签:style   java   color   re   c   rom   

原文地址:http://www.cnblogs.com/FindingMe/p/3850425.html

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