打印 scala 函数返回的值

发布于 2024-12-12 02:44:53 字数 417 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅笑轻吟梦一曲 2024-12-19 02:44:53

这是最常见的 scala 拼写错误之一。

您在方法末尾缺少 =

def findMax (tempratures: List[Int]) {

应阅读:

def findMax (tempratures: List[Int]) = {

= 关闭意味着您的方法返回 Unit (无任何内容) 。

This is one of the most common scala typos.

You're missing the = at the end of your method:

def findMax (tempratures: List[Int]) {

Should read:

def findMax (tempratures: List[Int]) = {

Leaving the = off means that your method returns Unit (nothing).

断桥再见 2024-12-19 02:44:53

因为您定义的 findMax 没有返回类型,所以返回类型为 Unit()

def findMax (tempratures: List[Int]) { ... }

又名

def findMax (tempratures: List[Int]) : Unit = { ... }

你想要代替

def findMax (tempratures: List[Int]) : Int = { ... }

或省略类型

def findMax (tempratures: List[Int]) = { ... }

Because you define findMax without return type, so the return type is Unit or ().

def findMax (tempratures: List[Int]) { ... }

aka

def findMax (tempratures: List[Int]) : Unit = { ... }

You want instead

def findMax (tempratures: List[Int]) : Int = { ... }

or with omitted type

def findMax (tempratures: List[Int]) = { ... }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文