沙发有误。- interface Inter<T>{
- void show(T t);
- }
- //子类中定义未知数据类型的泛型
- /*class InterImpl<T> implements Inter<T>{
- public void show(T t)
- {
- System.out.println("show:"+ t);
- }
- }*/
- //子类中定义的已知数据类型的泛型
- class InterImpl implements Inter<String>{
- public void show(String s)
- {
- System.out.println("show:"+s);
- }
- }
- public class GenericDemo4 {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- InterImpl i = new InterImpl ();
- i.show("haha");
- }
- }
复制代码 |