JDK6 库 - 与 JDK7 的兼容性

发布于 2024-12-17 12:27:29 字数 72 浏览 4 评论 0 原文

JDK7 向后兼容 JDK 6 吗?具体来说,如果我有一些使用 JDK6 编译的 jar,我可以在 JDK7 中开发时使用它们吗?

Is JDK7 backward compatible with JDK 6? Specifically, if I have some jars compiled using JDK6, will I able to use them while developing in JDK7?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

皓月长歌 2024-12-24 12:27:29

JDK7 向后兼容 JDK 6 吗?

  • 阅读官方文档了解 JDK 6 和 7 之间的不兼容性
  • 查看此表 API 变更的独立分析。 6 和 7 版本之间 Jre 类的向后二进制和源代码兼容性估计为 95%:

在此处输入图像描述

...

在此处输入图像描述

该报告由japi-compliance-checker 工具。

Is JDK7 backward compatible with JDK 6?

  • Read official document about incompatibilities between JDK 6 and 7
  • Look at this table for independent analysis of API changes. The backward binary and source compatibility of Jre classes between 6 and 7 versions is estimated at 95%:

enter image description here

...

enter image description here

The report is generated by the japi-compliance-checker tool.

深海少女心 2024-12-24 12:27:29

您将能够使用以前的 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.

杀手六號 2024-12-24 12:27:29

是的,您当然可以在当前的开发中使用较旧的 .jar 文件和 .class 文件以及较新的编译器:)

Yes, you can certainly use older .jar files and .class files in your current development with newer compilers :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文