看板
[ java ]
討論串[問題] 請教物件生成的流程
共 12 篇文章
內容預覽:
MyClass my=new MyClass();. 這行code做了以下事情. step1.宣告 MyClass型態的變數my. step2.在heap上建立MyClass 物件. step3.執行MyClass的建構子. step4.把記憶體的位置 asign reference給變數my. +
(還有1060個字)
內容預覽:
請注意看最後一段. "Not all JIT compilers generate the code as above.". ---. public class Test {. static Test a;. public Test(){. try{. Thread.sleep(3000);. }c
(還有491個字)