JDK6 库 - 与 JDK7 的兼容性
JDK7 向后兼容 JDK 6 吗?具体来说,如果我有一些使用 JDK6 编译的 jar,我可以在 JDK7 中开发时使用它们吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
JDK7 向后兼容 JDK 6 吗?具体来说,如果我有一些使用 JDK6 编译的 jar,我可以在 JDK7 中开发时使用它们吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
...
该报告由japi-compliance-checker 工具。
...
The report is generated by the japi-compliance-checker tool.
您将能够使用以前的 JRE/JDK 中的类文件。支持兼容性转发。但是,您将无法回退(例如,JDK7 到早期的 JRE/JDK)。 JDK7 的类文件格式已更改,以反映诸如
invokedynamic
之类的内容。此处讨论了一些更深入的信息。
You'll be able to use class files from previous JREs/JDKs. Compatibility forwards is supported. However you won't be able to go backwards (e.g. JDK7 to an earlier JRE/JDK). The class file format for JDK7 has changed to reflect such things as
invokedynamic
.Some more in-depth information discussed here.
是的,您当然可以在当前的开发中使用较旧的 .jar 文件和 .class 文件以及较新的编译器:)
Yes, you can certainly use older .jar files and .class files in your current development with newer compilers :)