Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的模板中,我想使用有界类型参数而不是精确类型:
@(myForm: Form[T])
哪里T像T <: MyType
T
T <: MyType
以使其在使用中更加通用。但是,我找不到指定这种行为的方法。我怎样才能做到这一点?
您可以使用
Form[_ <: MyType]
这样你就可以传入任何Form带有扩展 MyType 的类型参数。
Form