这个问题可能听起来有点愚蠢,但我不知道如何从命令行启动 Scala 方法。
我编译了以下文件Test.scala
:
package example
object Test {
def print() {
println("Hello World")
}
}
与scalac Test.scala
.
然后,我可以分两步print
运行该方法:scala
C:\Users\John\Scala\Examples>scala
Welcome to Scala version 2.9.2 (Java HotSpot(TM) Client VM, Java 1.6.0_32).
Type in expressions to have them evaluated.
Type :help for more information.
scala> example.Test.print
Hello World
但我真正喜欢做的是,直接从命令行使用一个命令运行该方法,例如scala example.Test.print
.
我怎样才能实现这个目标?
更新: ArikG 建议的解决方案对我不起作用 - 我错过了什么?
C:\Users\John\Scala\Examples>scala -e 'example.Test.print'
C:\Users\John\AppData\Local\Temp\scalacmd1874056752498579477.scala:1: error: u
nclosed character literal
'example.Test.print'
^
one error found
C:\Users\John\Scala\Examples>scala -e "example.Test.print"
C:\Users\John\AppData\Local\Temp\scalacmd1889443681948722298.scala:1: error: o
bject Test in package example cannot be accessed in package example
example.Test.print
^
one error found
在哪里
C:\Users\John\Scala\Examples>dir example
Volume in drive C has no label.
Volume Serial Number is 4C49-8C7F
Directory of C:\Users\John\Scala\Examples\example
14.08.2012 12:14 <DIR> .
14.08.2012 12:14 <DIR> ..
14.08.2012 12:14 493 Test$.class
14.08.2012 12:14 530 Test.class
2 File(s) 1.023 bytes
2 Dir(s) 107.935.760.384 bytes free
更新 2 - 可能的解决方案:
- 正如 ArikG 正确建议的那样,with
scala -e "import example.Test._; print"
适用于 Windows 7。 - 请参阅 Daniel 的答案以使其在没有导入语句的情况下工作