我使用Scala 2.9
我有课:
class Queue[T] private( private val heading: List[T], private val trailing: List[T] ) {
def this( a: T* ) = this( a.toList, Nil )
private def mirror = {
if ( heading.isEmpty ) {
new Queue[T]( trailing.reverse, Nil )
} else this
}
def head = {
val q = mirror
if ( q.heading.isEmpty ) None else new Some(q.heading.head)
}
def tail = {
val q = mirror
if ( q.heading.isEmpty ) q else new Queue[T]( q.heading.tail, trailing )
}
def enqueue( a: T ) = {
new Queue[T]( heading, a::trailing )
}
}
在方法 queue 中,如果我写下 new Quue( 标题, a : trailing)
(删除类型参数 [T]),该代码将无法汇编和表达关于“ 在类型类类类类类( a: T*) 中, 构建器 Quue [ T] 和构建器 Quue (类类类类) 中, 匹配参数类型( 标题: List[ T], 尾随: List[ T] 队列 [ T] 匹配参数类型( 列表 [ T] 、 List[ T] ) 的清晰引用 。”
那么为什么有必要明确指定类型参数 < code> [T] , 否则 Scala 将把两个单独的列表作为一个整体处理为重复参数? 我认为它与类型推断有关, 请有人解释一下吗?