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

Every good Java developer (well.. any developer) has his own list of the best books on each technology. Like:

  • Core Java — "Thinking In Java" B. Eckel, "Core Java" K. Horstmann;
  • Advanced Java — "Effective Java", "Java Puzzlers" J. Bloch;
  • Code Style — "Code Complete" S. Mcconnell;
  • Design Patterns — "Design Patterns: Elements of Reusable Object-Oriented Software" GoF;
  • ...
  • and so on.

So I`d like a really good book, the best book on JVM. What is it in your opinion?

share|improve this question
Community wiki – Sauron Sep 15 '09 at 12:22

closed as not constructive by Jeremy Banks, Jeff Atwood Sep 15 '11 at 7:23

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.

7 Answers

up vote 12 down vote accepted

The Java Virtual Machine Specification, available both online and in a dead-tree edition.

share|improve this answer
I am a bit slow :) Great! – vpram86 Sep 15 '09 at 12:06

Inside the Java Virtual Machine

The second edition of Inside the Java Virtual Machine has arrived. This book describes the inner workings of the Java virtual machine, and several Java APIs closely related to the virtual machine.

You can read it free of charge.

share|improve this answer

I'd have to add Java Concurrency in Practice, as it covers many aspects of the Java memory model and synchronisation which are not very well covered in other books. For example, the The Java Virtual Machine Specification states that a long or double may be copied using two instructions. JCiP will tell you what platforms and/or when this may occur.

alt text

share|improve this answer

Java Virtual Machine

This book is a comprehensive programming guide for the Java Virtual Machine (JVM). It gives readers a strong overview and reference of the JVM so that they may create their own implementations or write their own compilers that create Java object code.

share|improve this answer

Herong's Tutorial Notes on JVM

This book is a collection of notes and tutorial codes I wrote while I was trying different implementations of the JVM (Java Virtual Machine).

Topics include: CDS, Class Data Sharing, Garbage collection, GC, HotSpot, JDK 1.3.0, JDK 1.4.0, JDK 1.4.2, JDK 1.5.0, J2SDK, JRockit, Memory, Out of memory, Performance, Stack overflow, String buffer, etc.

share|improve this answer

Java Expert Solutions

share|improve this answer
Not really about JVM internals, is it? – Peter Štibraný Sep 15 '09 at 12:41

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