我想以下列方式返回两个集合的联合:
type Set = Int => Boolean
def union(s: Set, t: Set): Set = s ++ t
我收到错误"无法解析符号++"。发生了什么事?
答案 0 :(得分:1)
如果您使用的是Scala Set,则需要指定QObject::startTimer
的类型参数:
Set
答案 1 :(得分:0)
type Set = Int => Boolean
将Set
定义为Int
到Boolean
的函数。函数没有++
方法。就是这样。