Type Bounds
When defining a parameterized type or method, it may be necessary to specify bounds on the type. For example, a parameterized type might assume(假定) that a particular
type parameter contains certain methods.
Upper Type Bounds-上界
S <: T
这是类型上界的定义,也就是S必须是类型T的子类(或本身,自己也可以认为是自己的子类)。
Lower Type Bounds-下界
S <: T
这是类型上界的定义,也就是S必须是类型T的子类(或本身,自己也可以认为是自己的子类)。
时间: 2025-01-01 10:20:35