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

java 内存分析之this

时间:2017-06-14 02:39:16      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:ret   void   []   bsp   ati   sed   images   pack   system   

技术分享
package Demo;
/**
 * this 的值是当前对象的引用
 * @author Aaron
 *
 */
public class Boy {
    private int age;
    public Boy(int age) {
        this.age = age;
    }
    public Boy work() {
        this.sayHi();
        return this;
    }
    public void sayHi() {
        System.out.println("中华人民共和国");
    }
    public static void main(String[] args) {
        new Boy(20).work();
    }
}
源码

内存分析:

技术分享

 

java 内存分析之this

标签:ret   void   []   bsp   ati   sed   images   pack   system   

原文地址:http://www.cnblogs.com/BaiLaowu/p/7004371.html

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