标签: scala
我对何时使用泛型与何时使用存在类型感到困惑。说实话,我不知道存在类型是什么。
以下是什么区别?
def foo[T](arr: Array[T]) = ... def foo(arr: Array[T] forSome {type T}) = ...