찾다

 >  Q&A  >  본문

java this指针

    public class A {
    private String C;
    public A(String word) {
        this.C=word;
    }
    }

public class B extends A{

    public B(String word) {
        super(word);    
    }
    public static void main(String[] args) {    
     new B("C");
    }

}

我想问this指向的是B对象,为什么能访问父类的private C字段

高洛峰高洛峰2944일 전491

모든 응답(1)나는 대답할 것이다

  • 三叔

    三叔2016-11-12 09:26:26

    因为你是用父类的构造方法访问的。A类里的方法对private修饰的成员变量是有访问权限的。

    회신하다
    0
  • 취소회신하다