黑马程序员技术交流社区

标题: this的应用 [打印本页]

作者: 不爱念经的小僧    时间: 2015-9-18 13:02
标题: this的应用
package com.micro_night.www;

public class ExtendsClass {
       
        public static void main(String[] args){
               
                Zi z= new Zi();
//                Zi z1= new Zi();
//                z1.show();
                z.show();
                System.out.println(z);
        }
}
class Fu{
        Fu(){
                super();
                this.show();
                System.out.println(this);
                return;
        }
        void show(){
                System.out.println("Fu show!");
        }
}
class Zi extends Fu{
         int num=10;
        Zi(){
                super();
        }
        void show(){
                System.out.println("Zi show!"+"...."+num);
               
        }
}
作者: 不爱念经的小僧    时间: 2015-9-18 13:06
标题: RE: this的应用
其中我在父类构造器中调用的show()省略了this 。
以下是验证的答案:
Zi show!....0
com.micro_night.www.Zi@659e0bfd
Zi show!....10
com.micro_night.www.Zi@659e0bfd





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2