码迷,mamicode.com
首页 > 编程语言 > 详细

java中父类构造方法中的this指向谁

时间:2018-05-12 17:28:39      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:tcl   子类   父类   nbsp   extend   osc   etc   输出   .net   

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

java中父类构造方法中的this指向谁

标签:tcl   子类   父类   nbsp   extend   osc   etc   输出   .net   

原文地址:https://www.cnblogs.com/CrisZjie180228/p/9029146.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!