Code Conventions 2
http://www.javapractices.com/
http://rednaxelafx.iteye.com/blog/362738
Java Bytecode Instruction: http://en.wikipedia.org/wiki/Java_bytecode_instruction_listings
JVM note book: https://code.google.com/p/jvmnotebook/
GC: http://www.cs.kent.ac.uk/people/staff/rej/gc.html
find . -name '*.java' -print > java.list javac -d classes @java.list find . -name '*.class' -print > classes.list jar cf my.jar @classes.list
jstat -J-Djstat.showUnsupported=true -snap <pid>
-XX:+UnlockDiagnosticVMOptions -XX:+LogCompilation >>> hotspot.log
http://jinwoohwang.com/index.html
虚拟JUG:http://www.youtube.com/user/virtualJUG?feature=watch
[1]. http://en.wikipedia.org/wiki/Java_(programming_language) [2]. http://en.wikipedia.org/wiki/Java_virtual_machine [3]. http://en.wikipedia.org/wiki/List_of_Java_virtual_machines [4]. http://blog.csdn.net/qiucaijuan/article/details/6672981 [5]. https://code.google.com/p/jvmnotebook/ [6]. http://www.cs.kent.ac.uk/people/staff/rej/gc.html