本文介绍了如何限制允许作为“T”的类型在泛型课程?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个班级 Foo< T>
。我怎么能说我希望 T
成为实现 BarInterface
的类?只写类Foo< T实现BarInterface>
不编译。
I've got a class Foo<T>
. How can I say that I want T
to be some class implementing BarInterface
? Writing simply class Foo<T implements BarInterface>
doesn't compile.
推荐答案
使用 extends
而不是 implements
。
这篇关于如何限制允许作为“T”的类型在泛型课程?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!