打印 scala 函数返回的值
object TestClass {
def main (args: Array[String]) {
println("Hello World");
val c = List (1,2,3,4,5,6,7,8,9,10)
println(findMax(c))
}
def findMax (tempratures: List[Int]) {
tempratures.foldLeft(Integer.MIN_VALUE) {Math.max}
}
}
显示的输出是
Hello World
()
为什么输出不是
Hello World
10
我在 IntelliJ 中执行此操作
object TestClass {
def main (args: Array[String]) {
println("Hello World");
val c = List (1,2,3,4,5,6,7,8,9,10)
println(findMax(c))
}
def findMax (tempratures: List[Int]) {
tempratures.foldLeft(Integer.MIN_VALUE) {Math.max}
}
}
Output shown is
Hello World
()
Why is the output not
Hello World
10
I'm doing this in IntelliJ
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是最常见的 scala 拼写错误之一。
您在方法末尾缺少
=
:应阅读:
将
=
关闭意味着您的方法返回Unit
(无任何内容) 。This is one of the most common scala typos.
You're missing the
=
at the end of your method:Should read:
Leaving the
=
off means that your method returnsUnit
(nothing).因为您定义的
findMax
没有返回类型,所以返回类型为Unit
或()
。又名
你想要代替
或省略类型
Because you define
findMax
without return type, so the return type isUnit
or()
.aka
You want instead
or with omitted type