Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I came across this book "Inside Java 2 Virtual Machine", which looks like an excellent guide. However it's very dated, and I was wondering if there was a similar book that is more up to date.

share|improve this question

closed as not constructive by Smi, Aziz Shaikh, Tom Seidel, S.L. Barth, Aleks G Nov 6 '12 at 9:17

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

up vote 5 down vote accepted

Not a book, but there is a wiki on the Snoracle website for the HotSpot internals

share|improve this answer
unfortunately, the link is broken now – Sergey Jun 17 '12 at 15:35

Oracle JRockit: The Definitive Guide is a good book to deep the jvm implementation. The authors of it definitely are the experts of jvm.

share|improve this answer

The second edition of the Java Virtual Machine Specification by Tim Lindholm and Frank Yellin is easier to read than the title would suggest. The authors were some of the original authors of the Sun JVM so the book is probably close to authoritative.

Also, since it's a specification, it (should) be true of any implentation you run across.

share|improve this answer

There is a second edition of the same book on the following link with 6/7 chapters online.

http://www.artima.com/insidejvm/ed2/index.html

share|improve this answer

Please read Java related publications

http://wikis.sun.com/display/HotSpotInternals/Publications+JKU

Here you will get latest updates and research papers on JVM internals

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.