解决方法
的?表示这是谓词,返回Boolean的函数.这个公约可以追溯到Lisp,哪里? (方案),p或-p(其他Lisps,模拟具有“相似”字母的问号)也表示谓词.想到这是一个问题,“对象是空的吗?
如果您将它们分隔为_,Scala将只允许混合的标识符名称(包含字母数字和标点符号).例如.,
scala> def iszero?(x : Int) = x == 0 <console>:1: error: '=' expected but identifier found. def iszero?(x : Int) = x == 0 ^
不行,但是
scala> def iszero_?(x : Int) = x == 0 iszero_$qmark: (x: Int)Boolean
确实.