-
Verification of byte code is a step performed by the JVM before it runs any class file to ensure that the class file is structurally and conceptually correct as per the JVM specification.
- If the class file fails this check, it is rejected and the JVM shuts down, indicating either security or integrity violation of the class file.
- This verification is done by all JVMs.
Related articles
- Why java is called write once and run anywhere (wiki.answers.com)