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

java 调用构造器就创建对象吗?

时间:2016-07-07 11:07:47      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:java   private   package   public   father   

直接上代码:

class Father {
    private String aaa = "我来测试";
    public Father() {
        System.out.println("father this.getClass():"+this.getClass());//表示当前运行时的对象的class
        System.out.println("father this.hashCode(:"+this.hashCode());
        System.out.println("father this:"+this);
        System.out.println("father this.aaa:"+this.aaa);
        this.test();
    }
    private void test(){
        System.out.println("我是私有化的方法");
    }

    public int dowork() {
        System.out.println("我要去工作了");
        return 1;
    }
}

class Son extends Father {
    private String bbb = "我来测试1";
    public Son() {
        System.out.println("son super.getClass():"+super.getClass());//表示父类运行时的class
        System.out.println("son this.hashCode():"+this.hashCode());
        System.out.println("son this:"+this);
    }
}

public class FatherDemo{
    public static void main(String[] args) {
        Father f = new Son();
    }
}

运行结果是这样的:

father this.getClass():class xiaomage.Son
father this.hashCode(:581882789
father this:xiaomage.Son@22aed3a5
father this.aaa:我来测试
我是私有化的方法
son super.getClass():class xiaomage.Son
son this.hashCode():581882789
son this:xiaomage.Son@22aed3a5

本文出自 “彪吧” 博客,请务必保留此出处http://sherwin28.blog.51cto.com/2904903/1812119

java 调用构造器就创建对象吗?

标签:java   private   package   public   father   

原文地址:http://sherwin28.blog.51cto.com/2904903/1812119

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