在jvm上编译scala程序
什么版本的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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 whichString
has added a method that Scala defines onWrappedString
.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