本帖最后由 张雪萍 于 2013-4-3 22:04 编辑
- interface Inter<T>
- {
- void show(T t);
- }
- /*
- class InterImpl implements Inter<String>
- {
- public void show(String t)
- {
- System.out.println("show :"+t);
- }
- }
- */
- class InterImpl<T> implements Inter<T>
- {
- public void show(T t)
- {
- System.out.println("show :"+t);
- }
- }
- class GenericDemo8
- {
- public static void main(String[] args)
- {
- InterImpl<Integer> i = new InterImpl<Integer>();
- i.show(4);
- //InterImpl i = new InterImpl();
- //i.show("haha");
- }
- }
复制代码 关于泛型接口,
这两个类有什么区别吗?
具体怎样运行?
尤其是子类继承父类时,父类的泛型对子类有什么影响? |