zoukankan      html  css  js  c++  java
  • java中父类构造方法中的this指向谁

    public class Test { 

        public Test() { 
        } 
         
        public static void main(String[] args) { 
            new s(); 
        } 


    class F{ 
        public F() { 
            System.out.println(this.getClass().getName()); 
            this.f1(); 
        } 
        public void f1() { 
            System.out.println(1234); 
        } 


    class s extends F{ 
        public s() { 
             
        } 
         
        public void hello() { 
            System.out.println(123); 
        } 

    }

    this指向谁 //运行结果是 s子类

    但是又输出1234

    解释:https://www.oschina.net/question/74811_123958

  • 相关阅读:
    设计模式
    设计模式
    设计模式
    设计模式
    设计模式
    设计模式
    OpenGL学习 (一)
    C#
    Unity
    [开发ing] Unity项目
  • 原文地址:https://www.cnblogs.com/CrisZjie180228/p/9029146.html
Copyright © 2011-2022 走看看