从Scala API,我得到了以下示例,该示例无法编译;
scala> def arr[T] = new Array[T](0)
<console>:10: error: cannot find class manifest for element type T
def arr[T] = new Array[T](0)
^
我想知道,为什么它不能编译(Scala API 没有解释错误)?它不只是一个普通的参数化方法吗?为什么编译器抱怨它?