请使用以下类型别名
class Container[T]
type MyInt = Container[Int]
是否可以以及如何在类型别名中声明类型参数,尝试
type MyInt2 = Container[T <: Int] // error: ']' expected but '<:' found.
答案 0 :(得分:16)
你可以这样做:
type MyInt2[T <: Int] = Container[T]
对于其他成员(例如def
),类型成员必须在其声明/签名(左)中声明类型参数,而不是在正文(右)中声明。