Java中对象的引用
对象在内存中的具体存储方式到底是什么样子的呢?这就要提出“对象引用”这个概念 public class Test { public static void main(String[] args) { Human aPerson = new Human(160); ...
Free Open Share