alsor.net
alsor.net

Reputation: 1142

Updates to the JVM Specification

JVM Spec 2nd Edition is dated by 1999. Which important updates since then (like dynamicinvoke) should I consider to learn? This is in course to understand internals of the modern JVM implementations (HotSpot particularly).

Upvotes: 4

Views: 274

Answers (3)

snorbi
snorbi

Reputation: 2890

The final JVM specification for Java SE 7 is available here: JVM specification for Java SE 7

Upvotes: 0

Carlos Quintanilla
Carlos Quintanilla

Reputation: 13303

JSR 924: JavaTM Virtual Machine Specification

This site has the latest version drafts: http://jcp.org/en/jsr/detail?id=924

The Java™ Virtual Machine Specification Java SE 7 Edition DRAFT 2011-04-15

http://jcp.org/aboutJava/communityprocess/final/jsr336/index.html http://download.oracle.com/otndocs/jcp/java_se-7-final-spec/index.html

UPDATE: The Final version of the Java SE 7 Specification PDFs is here: http://docs.oracle.com/javase/specs/

Upvotes: 1

Nike
Nike

Reputation: 312

Visit this link http://wikis.sun.com/display/HotSpotInternals/Publications+JKU There you will get update about latest research areas.

Upvotes: 1

Related Questions