Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 jdk 5 运行小代码片段并使用 jdk 6 运行其余代码?
有一个代码可以在 jdk 5 上正常工作。我将根据 jdk 6 对其进行更改,但目前没有时间这样做。那么有什么方法可以用 jdk 5 执行 4 行。
看起来很有趣,但它是必需的....请建议我....
使用 JDK5 开发的任何东西都将与 JDK 6 兼容(从源代码的角度来看),并将在 JRE 6 JVM 上运行。注意源代码/编译和结果字节码的实际运行之间的区别。所以我认为除了使用 JDK/JRE 6 编译/运行之外,你不需要做任何事情。