扩展或等于的通用语法

时间:2011-01-19 16:09:20

标签: java generics

Java中GenericExample< ItemType(扩展或等于)Object >的语法是什么?

谢谢, 亚当。

更新

感谢您的所有回复。 这里的答案更多地与代码中泛型的使用有关,我想讨论减速实现,例如:

class GenericExample<ItemType (extends or equal to) ParentType> {
}

class Inherited<ParentType> extends GenericExample<ParentType> {
    /* The type parameter in this class does not compile.
       I would like to find a work around to make something like this to work. 
       I would like to have ParentType=JComponent , and thus to specify that the  
       Inherited class uses JComponent for needed flexibility*/
}

我希望这更有意义......

亚当。

2 个答案:

答案 0 :(得分:3)

你已经知道了:

GenericExample<ItemType extends MyObject>

有关泛型的第一个指南可以在这里找到:http://download.oracle.com/javase/1.5.0/docs/guide/language/generics.html

答案 1 :(得分:1)

GenericExample<T extends Object>