├── .gitignore ├── Book-src ├── 第10章 │ ├── 清单10-1.txt │ ├── 清单10-10.txt │ ├── 清单10-11.txt │ ├── 清单10-12.txt │ ├── 清单10-13.txt │ ├── 清单10-2.txt │ ├── 清单10-3.txt │ ├── 清单10-4.txt │ ├── 清单10-5.txt │ ├── 清单10-6.txt │ ├── 清单10-7.txt │ ├── 清单10-8.txt │ └── 清单10-9.txt ├── 第11章 │ └── 清单11-2.txt ├── 第12章 │ ├── 清单12-1.txt │ └── 清单12-5.txt ├── 第13章 │ ├── 清单13-2.txt │ ├── 清单13-3.txt │ ├── 清单13-4.txt │ └── 清单13-5.txt ├── 第1章 │ └── 清单1-1.txt ├── 第2章 │ ├── 清单2-3.txt │ ├── 清单2-4.txt │ ├── 清单2-5.txt │ ├── 清单2-6.txt │ ├── 清单2-7.txt │ ├── 清单2-8.txt │ └── 清单2-9.txt ├── 第3章 │ ├── 清单3-1.txt │ ├── 清单3-2.txt │ ├── 清单3-5.txt │ ├── 清单3-6.txt │ ├── 清单3-7.txt │ ├── 清单3-8.txt │ └── 清单3-9.txt ├── 第4章 │ ├── 清单4-10.txt │ ├── 清单4-11.txt │ ├── 清单4-12.txt │ ├── 清单4-5.txt │ ├── 清单4-6.txt │ ├── 清单4-8.txt │ └── 清单4-9.txt ├── 第5章 │ └── EclipseStartTime_1.0.0.201011281102.jar ├── 第6章 │ └── 清单6-1.txt ├── 第7章 │ ├── 清单7-1.txt │ ├── 清单7-2.txt │ ├── 清单7-3.txt │ ├── 清单7-4.txt │ ├── 清单7-5.txt │ ├── 清单7-6.txt │ ├── 清单7-7.txt │ └── 清单7-8.txt ├── 第8章 │ ├── 清单8-1.txt │ ├── 清单8-10.txt │ ├── 清单8-11.txt │ ├── 清单8-12.txt │ ├── 清单8-14.txt │ ├── 清单8-15.txt │ ├── 清单8-2.txt │ ├── 清单8-3.txt │ ├── 清单8-4.txt │ ├── 清单8-5.txt │ ├── 清单8-6.txt │ ├── 清单8-7.txt │ └── 清单8-8.txt └── 第9章 │ ├── 清单9-1.txt │ ├── 清单9-2.txt │ ├── 清单9-3.txt │ ├── 清单9-4.txt │ ├── 清单9-5.txt │ ├── 清单9-6.txt │ ├── 清单9-7.txt │ └── 清单9-8.txt ├── MISCs ├── README.md ├── cglib.2.2.3 ├── cglib-2.2.3.jar ├── cglib-docs-2.2.3.jar ├── cglib-nodep-2.2.3.jar └── cglib-src-2.2.3.jar └── src ├── ch02 ├── DirectMemoryOOM.java ├── HeapOOM.java ├── JavaVMStackOOM.java ├── JavaVMStackSOF.java ├── MethodAreaOOM.java ├── RuntimeConstantsPoolOOM.java └── StringInternInJdk6And7.java ├── ch06 ├── ClassStructure.java └── LocalVariable.java ├── ch07 └── InterfaceField.java ├── ch10 └── AutoBoxingUnboxingTrap.java └── ch11 └── PrintCompilation.java /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | .project 3 | .settings 4 | *.bak 5 | -------------------------------------------------------------------------------- /Book-src/第10章/清单10-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-1.txt -------------------------------------------------------------------------------- /Book-src/第10章/清单10-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-10.txt -------------------------------------------------------------------------------- /Book-src/第10章/清单10-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-11.txt -------------------------------------------------------------------------------- /Book-src/第10章/清单10-12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-12.txt -------------------------------------------------------------------------------- /Book-src/第10章/清单10-13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-13.txt -------------------------------------------------------------------------------- /Book-src/第10章/清单10-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-2.txt -------------------------------------------------------------------------------- /Book-src/第10章/清单10-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-3.txt -------------------------------------------------------------------------------- /Book-src/第10章/清单10-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-4.txt -------------------------------------------------------------------------------- /Book-src/第10章/清单10-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-5.txt -------------------------------------------------------------------------------- /Book-src/第10章/清单10-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-6.txt -------------------------------------------------------------------------------- /Book-src/第10章/清单10-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-7.txt -------------------------------------------------------------------------------- /Book-src/第10章/清单10-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-8.txt -------------------------------------------------------------------------------- /Book-src/第10章/清单10-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第10章/清单10-9.txt -------------------------------------------------------------------------------- /Book-src/第11章/清单11-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第11章/清单11-2.txt -------------------------------------------------------------------------------- /Book-src/第12章/清单12-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第12章/清单12-1.txt -------------------------------------------------------------------------------- /Book-src/第12章/清单12-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第12章/清单12-5.txt -------------------------------------------------------------------------------- /Book-src/第13章/清单13-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第13章/清单13-2.txt -------------------------------------------------------------------------------- /Book-src/第13章/清单13-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第13章/清单13-3.txt -------------------------------------------------------------------------------- /Book-src/第13章/清单13-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第13章/清单13-4.txt -------------------------------------------------------------------------------- /Book-src/第13章/清单13-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第13章/清单13-5.txt -------------------------------------------------------------------------------- /Book-src/第1章/清单1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第1章/清单1-1.txt -------------------------------------------------------------------------------- /Book-src/第2章/清单2-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第2章/清单2-3.txt -------------------------------------------------------------------------------- /Book-src/第2章/清单2-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第2章/清单2-4.txt -------------------------------------------------------------------------------- /Book-src/第2章/清单2-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第2章/清单2-5.txt -------------------------------------------------------------------------------- /Book-src/第2章/清单2-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第2章/清单2-6.txt -------------------------------------------------------------------------------- /Book-src/第2章/清单2-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第2章/清单2-7.txt -------------------------------------------------------------------------------- /Book-src/第2章/清单2-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第2章/清单2-8.txt -------------------------------------------------------------------------------- /Book-src/第2章/清单2-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第2章/清单2-9.txt -------------------------------------------------------------------------------- /Book-src/第3章/清单3-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第3章/清单3-1.txt -------------------------------------------------------------------------------- /Book-src/第3章/清单3-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第3章/清单3-2.txt -------------------------------------------------------------------------------- /Book-src/第3章/清单3-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第3章/清单3-5.txt -------------------------------------------------------------------------------- /Book-src/第3章/清单3-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第3章/清单3-6.txt -------------------------------------------------------------------------------- /Book-src/第3章/清单3-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第3章/清单3-7.txt -------------------------------------------------------------------------------- /Book-src/第3章/清单3-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第3章/清单3-8.txt -------------------------------------------------------------------------------- /Book-src/第3章/清单3-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第3章/清单3-9.txt -------------------------------------------------------------------------------- /Book-src/第4章/清单4-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第4章/清单4-10.txt -------------------------------------------------------------------------------- /Book-src/第4章/清单4-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第4章/清单4-11.txt -------------------------------------------------------------------------------- /Book-src/第4章/清单4-12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第4章/清单4-12.txt -------------------------------------------------------------------------------- /Book-src/第4章/清单4-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第4章/清单4-5.txt -------------------------------------------------------------------------------- /Book-src/第4章/清单4-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第4章/清单4-6.txt -------------------------------------------------------------------------------- /Book-src/第4章/清单4-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第4章/清单4-8.txt -------------------------------------------------------------------------------- /Book-src/第4章/清单4-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第4章/清单4-9.txt -------------------------------------------------------------------------------- /Book-src/第5章/EclipseStartTime_1.0.0.201011281102.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第5章/EclipseStartTime_1.0.0.201011281102.jar -------------------------------------------------------------------------------- /Book-src/第6章/清单6-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第6章/清单6-1.txt -------------------------------------------------------------------------------- /Book-src/第7章/清单7-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第7章/清单7-1.txt -------------------------------------------------------------------------------- /Book-src/第7章/清单7-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第7章/清单7-2.txt -------------------------------------------------------------------------------- /Book-src/第7章/清单7-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第7章/清单7-3.txt -------------------------------------------------------------------------------- /Book-src/第7章/清单7-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第7章/清单7-4.txt -------------------------------------------------------------------------------- /Book-src/第7章/清单7-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第7章/清单7-5.txt -------------------------------------------------------------------------------- /Book-src/第7章/清单7-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第7章/清单7-6.txt -------------------------------------------------------------------------------- /Book-src/第7章/清单7-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第7章/清单7-7.txt -------------------------------------------------------------------------------- /Book-src/第7章/清单7-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第7章/清单7-8.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-1.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-10.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-11.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-12.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-14.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-15.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-2.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-3.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-4.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-5.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-6.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-7.txt -------------------------------------------------------------------------------- /Book-src/第8章/清单8-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第8章/清单8-8.txt -------------------------------------------------------------------------------- /Book-src/第9章/清单9-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第9章/清单9-1.txt -------------------------------------------------------------------------------- /Book-src/第9章/清单9-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第9章/清单9-2.txt -------------------------------------------------------------------------------- /Book-src/第9章/清单9-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第9章/清单9-3.txt -------------------------------------------------------------------------------- /Book-src/第9章/清单9-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第9章/清单9-4.txt -------------------------------------------------------------------------------- /Book-src/第9章/清单9-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第9章/清单9-5.txt -------------------------------------------------------------------------------- /Book-src/第9章/清单9-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第9章/清单9-6.txt -------------------------------------------------------------------------------- /Book-src/第9章/清单9-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第9章/清单9-7.txt -------------------------------------------------------------------------------- /Book-src/第9章/清单9-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/Book-src/第9章/清单9-8.txt -------------------------------------------------------------------------------- /MISCs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/MISCs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UnderstandingTheJvm 2 | 《深入理解Java虚拟机 - Jvm高级特性与最佳实践(第二版)》书中的示例代码,供学习使用 3 | -------------------------------------------------------------------------------- /cglib.2.2.3/cglib-2.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/cglib.2.2.3/cglib-2.2.3.jar -------------------------------------------------------------------------------- /cglib.2.2.3/cglib-docs-2.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/cglib.2.2.3/cglib-docs-2.2.3.jar -------------------------------------------------------------------------------- /cglib.2.2.3/cglib-nodep-2.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/cglib.2.2.3/cglib-nodep-2.2.3.jar -------------------------------------------------------------------------------- /cglib.2.2.3/cglib-src-2.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/cglib.2.2.3/cglib-src-2.2.3.jar -------------------------------------------------------------------------------- /src/ch02/DirectMemoryOOM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/src/ch02/DirectMemoryOOM.java -------------------------------------------------------------------------------- /src/ch02/HeapOOM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/src/ch02/HeapOOM.java -------------------------------------------------------------------------------- /src/ch02/JavaVMStackOOM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/src/ch02/JavaVMStackOOM.java -------------------------------------------------------------------------------- /src/ch02/JavaVMStackSOF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/src/ch02/JavaVMStackSOF.java -------------------------------------------------------------------------------- /src/ch02/MethodAreaOOM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/src/ch02/MethodAreaOOM.java -------------------------------------------------------------------------------- /src/ch02/RuntimeConstantsPoolOOM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/src/ch02/RuntimeConstantsPoolOOM.java -------------------------------------------------------------------------------- /src/ch02/StringInternInJdk6And7.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/src/ch02/StringInternInJdk6And7.java -------------------------------------------------------------------------------- /src/ch06/ClassStructure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/src/ch06/ClassStructure.java -------------------------------------------------------------------------------- /src/ch06/LocalVariable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/src/ch06/LocalVariable.java -------------------------------------------------------------------------------- /src/ch07/InterfaceField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/src/ch07/InterfaceField.java -------------------------------------------------------------------------------- /src/ch10/AutoBoxingUnboxingTrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/src/ch10/AutoBoxingUnboxingTrap.java -------------------------------------------------------------------------------- /src/ch11/PrintCompilation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyw/UnderstandingTheJvm/HEAD/src/ch11/PrintCompilation.java --------------------------------------------------------------------------------