gpt4 book ai didi

scala - 使用 "if"作为表达式

转载 作者:行者123 更新时间:2023-12-04 17:55:16 24 4
gpt4 key购买 nike

我想知道,为什么我不能编译这个:

class MyClass{
override def toString = "123:" + if (true) "456" else "789"
//error: illegal start of simple expression
}

最佳答案

尝试这个:

override def toString = "123:" + (if (true) "456" else "789")

关于scala - 使用 "if"作为表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17257112/

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