vote up 8 vote down star
2

How does bytecode get verified in the JVM?

flag

12% accept rate

3 Answers

vote up 7 vote down

Sun themselves have a little snippet page on how it works here.

Basically, the JRE doesn't trust the JDK. That's because it has no knowledge of which JDK compiler created the class file. It treats the class file as hostile until verified.

link|flag
+1 for paranoia :) – dfa Apr 16 at 7:27
vote up 6 vote down

The best source of information is probably the relevant section in the JVM specification.

link|flag
vote up 4 vote down

Simple explaination is available here http://cs.fit.edu/~ryan/java/language/bytecode.html

link|flag

Your Answer

Get an OpenID
or

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