class Demo<T>
{
public void show(T t)
{
System.out.println("show:"+t);
}
public <Q> void print(Q q)
{
System.out.println("print:"+q);
}
public static<W> void method(W t)
{
System.out.println("method:"+t);
}
}
class Demo4
{
public static void main(String[] args)
{
Demo<String> d = new Demo<String>();
d.show("haha");
d.print(4);
d.print("heienie");
Demo.method("hello");
}
}
为什么用Demo去调用method方法,不太理解,哪位兄弟帮忙解答一下!
|