标签: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(); } }
内存分析:
标签:ret void [] bsp ati sed images pack system
原文地址:http://www.cnblogs.com/BaiLaowu/p/7004371.html