作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据 Scala 教程,我们需要先使用 scalac filename.scala
编译 Scala 代码,然后再使用 scala filename
执行它。但是当我像 scala filename.scala
这样尝试时,它运行并获得了输出。
为什么会这样?所以运行代码不需要使用 scalac 编译?有人可以解释一下吗。
谢谢。
scala -help
真的很有帮助。它说
A file argument will be run as a scala script unless it contains only
self-contained compilation units (classes and objects) and exactly one
runnable main method. In that case the file will be compiled and the
main method invoked. This provides a bridge between scripts and standard
scala source.
感谢丹尼斯的指点。
最佳答案
运行 scala
命令实际上首先在幕后编译它,然后运行生成的程序。
关于Scala 代码运行时无需使用 scalac 进行编译?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27333342/
我是一名优秀的程序员,十分优秀!