gpt4 book ai didi

scala - 使用sbt运行Scala程序时提示用户输入

转载 作者:行者123 更新时间:2023-12-04 07:36:52 25 4
gpt4 key购买 nike

我有一个非常简单的scala程序:

object TakeInputs {
def main(args: Array[String]) {
val name = readLine("What is your name?")
println(name)
}
}

当我尝试使用
sbt "project myproject" "run-main TakeInput"它不等待用户输入,程序仅完成 What is your name?null作为输出。

有没有办法让sbt等待用户输入(例如,如果在sbt控制台中运行“readLine”,会发生什么)?我可以提供输入作为命令行参数,但是我有很多输入,并且我想通过显示指示用户下一步输入的消息来使程序更人性化。谢谢。

最佳答案

将以下内容添加到您的build.sbt中

connectInput in run := true

Configuring Input中的 the sbt documentation

关于scala - 使用sbt运行Scala程序时提示用户输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28574678/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com