Will JVM throw exception when it runs classes compiled with a JDK that has same major version but higher minor version compared to JVM ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The JDK version does not really matter, the class file format version does. So far, the minor version of the class file format hasn’t been used, and changes in the major version have always corresponded with major JDK release (counting 1.2 -> 1.3 -> 1.4 as major releases).
Additionally, the
-targetoption ofjavaccan be used to produce class files compatible with older runtimes.