在jvm上编译scala程序

发布于 2024-10-15 09:58:37 字数 58 浏览 2 评论 0原文

什么版本的scala库jar将支持java 1.5和1.6

以及如何在java中编译?

What version of the scala library jar will support java 1.5 and 1.6

And also how to compile in java?

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

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

发布评论

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

评论(2

浅沫记忆 2024-10-22 09:58:37

Scala 的 jar 文件是使用 JVM 1.5 编译的,通过查看 META-INF/MANIFEST.MF 文件可以看出。这是 2.8.1:创建者:1.5.0_22-b03 (Sun Microsystems Inc.)

Scala 编译器生成与 jvm-5 兼容的输出(请参阅 scalac -target )。此外,它还有一些魔力可以与 jdk 1.6 一起使用,其中 String 添加了 Scala 在 WrappedString 上定义的方法。

Scala's jar files are compiled with JVM 1.5, as can be seen by looking into the META-INF/MANIFEST.MF file. Here is 2.8.1: Created-By: 1.5.0_22-b03 (Sun Microsystems Inc.).

The Scala compiler generates output that is compatible with jvm-5 (see scalac -target). Also, it has some magic to enable use with jdk 1.6, in which String has added a method that Scala defines on WrappedString.

落叶缤纷 2024-10-22 09:58:37

Scala 是用 scalac 编译器而不是 javac 编译的。要运行 Scala 代码,您需要 Java 运行时/sdk 版本 1.5 或更高版本以及 scala 库 jar。

版本 2.7.7 和 2.8.1 是当今使用的常用版本。如果您现在开始一个新项目,您应该瞄准 2.8.1 或 2.9(即将推出)。下载站点位于此处

请参阅此处。 org/faq/1" rel="nofollow">常见问题解答

Scala is compiled with the scalac compiler and not javac. To run the Scala code you need Java runtime/sdk version 1.5 or later and the scala library jar.

Version 2.7.7 and 2.8.1 are the common versions used today. If you start a new project now you should aim for 2.8.1 or 2.9 (which is going to be available soon-ish). Download site is here

See the FAQ

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