谈谈Java中protected访问权限 - 编程入门网
谈谈Java中protected访问权限时间:2011-03-25 51cto博客 zhangjunhd来谈谈protected访问权限问题。看下面示例1: Test.java
此时出现上文提到的错误:The method clone from the type Object is not visiuable. 我们已经清楚Object.clone()是protected方法。这说明,该方法可以被同包 (java.lang)下和它(java.lang.Object)的子类访问。这里是MyObject类(默认继承 java.lang.Object)。 同样Test也是java.lang.Object的子类。但是,不能在一个子类中访问另一个子类的 protected方法,尽管这两个子类继承自同一个父类。 再看示例2: Test2.java
这里,我们在MyObject2类中覆盖(override)父类的clone()方法,在另一个类 Test2中调用clone()方法,编译通过。 编译通过的原因显而易见,当你在MyObject2类中覆盖clone()方法时,MyObject2类 和Test2类在同一个包下,所以此protected方法对Test2类可见。 分析到这里,我们在回忆一下Java中的浅复制与深复制文中,章节2.2中的声明,②在 派生类中覆盖基类的clone()方法,并声明为public。现在明白这句话的原因了吧(为了 让其它类能调用这个类的clone()方法,重载之后要把clone()方法的属性设置为public) 。 下面再来看示例3: Test3.java
package 2
谈谈Java中protected访问权限(2)时间:2011-03-25 51cto博客 zhangjunhd这里我用Test3类继承MyObject3,注意这两个类是不同包的,否则就是示例2的情形。 在Test3类中调用Test3类的实例tobj的clone()方法,编译通过。而同样调用MyObject3 类的实例obj的clone()方法,编译错误! 意想不到的结果,protected方法不是可以被继承类访问吗? 必须明确,类Test3确实是继承了类MyObject3(包括它的clone方法),所以在类 Test3中可以调用自己的clone方法。但类MyObject3的protected方法对其不同包子类 Test3来说,是不可见的。 这里再给出《java in a nutshell》中的一段话: protected access requires a little more elaboration. Suppose class A declares a protected field x and is extended by a class B, which is defined in a different package (this last point is important). Class B inherits the protected field x, and its code can access that field in the current instance of B or in any other instances of B that the code can refer to. This does not mean, however, that the code of class B can start reading the protected fields of arbitrary instances of A! If an object is an instance of A but is not an instance of B, its fields are obviously not i |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |