倒不如改成這樣來體會 =="
※ 引述《pzyc79 (I'm bored)》之銘言:
: ===============Class Test:===============
: package a;
: public class Test {
: protected Test(){
: }
public Test(String nothing) {}
protected foo() {}
: }
: ===============Class Test2:==============
: package b;
: import a.Test;
: public class Test2 extends Test{
Test() {
super(); //OK
}
: void fun(){
: Test t = new Test(); //Test() is not visible
Test t = new Test(""); //OK
this.foo(); //OK
: }
: }
: WHY? 宣告protected不是可以在子類別中看見嗎?
依照字面上解釋,只能說你的疑惑我每天都有 [死]