Bean_Man 2017-03-21 14:06 采纳率: 0%
浏览 3975

java中如何访问父类的父类的属性

子类能不能直接用this.XX 访问父类的父类中的属性啊, 这个属性的权限是public

  • 写回答

4条回答 默认 最新

  • Upping 2019-04-19 19:21
    关注

    需要强转一下,即: ((PersonOfPerson)this).xxx。
    示例代码如下:

    class PerParent {
        public String color;
    
        public PerParent() {
            this.color = "white";
        }
    
        public void printColor() {
            System.out.println(color);
        }
    }
    
    public class Parent extends PerParent{
        public String color;
        public Parent(){
            this.color="green";
        }
        public void printColor(){
            System.out.println(color);
        }
    
        public static void main(String args[]){
            System.out.println(((PerParent)  new Child()).color);
            System.out.println(((Parent) new Child()).color);
            System.out.println(new Child().color);
            new Child().printColor();
            new Child().printSuperColor();
            new Child().printSuperSuperColor();
        }
    }
    class Child extends Parent{
        public String color;
    
        public Child(){
            color="black";
        }
    
        public void printColor(){
            System.out.println(color);
        }
    
        public void printSuperColor(){
                    System.out.println(super.color);
            System.out.println(((Parent)this).color);
        }
    
        public void printSuperSuperColor(){
            System.out.println(((PerParent)this).color);
        }
    }
    

    参考:https://www.cnblogs.com/levi1994/p/5568433.html

    评论

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?