从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没有解释错误)? 这不仅仅是一个普通的参数化方法吗?为什么编译器会抱怨它?