How does bytecode get verified in the JVM?
|
|
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. |
||
|
|
|
The best source of information is probably the relevant section in the JVM specification. |
||
|
|
|
|
Simple explaination is available here http://cs.fit.edu/~ryan/java/language/bytecode.html |
||
|
|
