作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题在这里已经有了答案:
9年前关闭。
Possible Duplicate:
Load Scala file into interpreter to use functions?
alex@alex-K43U:~/projects$ sbt console
[info] Set current project to default-8aceda (in build file:/home/alex/projects/)
[info] Starting scala interpreter...
[info]
Welcome to Scala version 2.9.2 (OpenJDK Client VM, Java 1.6.0_24).
Type in expressions to have them evaluated.
Type :help for more information.
scala>
test.scala
(/home/alex/projects/test.scala) 文件,内容如下:
def timesTwo(i: Int): Int = {
println("hello world")
i * 2
}
scala> timesTwo
最佳答案
简而言之,使用 :load
scala REPL 中的函数来加载文件。然后你可以在文件中调用该函数,如果你将它包装在一个对象或类中,因为 sbt
尝试编译它。不确定是否可以仅使用函数定义来完成。
将其包裹在 object
中获取 sbt
正确编译它。
object Times{
def timesTwo(i: Int): Int = {
println("hello world")
i * 2
}
}
scala> :load Times.scala
Loading Times.scala...
defined module Times
timesTwo
在
Times
:
scala> Times.timesTwo(2)
hello world
res0: Int = 4
class
中或
object
您可以使用命令
:paste
粘贴它在 scala REPL/sbt 控制台中。
scala> :paste
// Entering paste mode (ctrl-D to finish)
def timesTwo(i: Int): Int = {
println("hello world")
i * 2
}
// Exiting paste mode, now interpreting.
timesTwo: (i: Int)Int
scala> timesTwo(2)
hello world
res1: Int = 4
关于scala - 如何在 sbt 控制台中加载 scala 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13898373/
我是一名优秀的程序员,十分优秀!