Re: [问题] 在子类别new建构子为protected的父类别

楼主: lovdkkkk (dk)   2014-05-11 10:27:48
※ 引述《bleed1979 (十三)》之铭言:
: ※ 引述《pzyc79 (I'm bored)》之铭言:
: : ===============Class Test:===============
: : package a;
: : public class Test {
: : protected Test(){
: : }
: : }
: : ===============Class Test2:==============
: : package b;
: : import a.Test;
: : public class Test2 extends Test{
: : void fun(){
: : Test t = new Test(); //Test() is not visible
: : }
: : }
: : WHY? 宣告protected不是可以在子类别中看见吗?
: 前面的文章太多结果论了,回归到定义面吧。
: http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html
: Constructors are not members ... blabla ...
: http://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html
: 这是作用在 members 上的。
: end
稍做补充
根据定义,连 call 方法也是不行的,
也就是在 Test2 中以下这行也会错:
// 假设 Test 有一个 public constructor
// 并有一个 protected method
new PublicConstructorOfTest().protectedMethod();
因为 Test 并不是自己的 subclass,
不能在其它 package 中生一个 Test 的实体,
然后透过它来 call Test 的 protected 方法。
实测下来结果也是如此,参见 gist
https://gist.github.com/anonymous/2d80bf9eb1581ed05fc6
楼主: lovdkkkk (dk)   2014-05-11 10:37:00
贴完 github 马上挂掉...0rz
作者: sbrhsieh (十年一梦)   2014-05-11 20:35:00
都搞错重点,跟 constructor 算不算 member 没关系跟 Test 是不是自己的 subclass 也没关系。new Test().protectedMethod(); 合不合格是看 statement出现的context。不要往为什么一个Test object 会不能执行自己的 protected method 这方向硬要想一个理由。

Links booklink

Contact Us: admin [ a t ] ucptt.com