A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© shdosh 中级黑马   /  2015-8-26 21:48  /  150 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. public /*<T>*/void show(T t)//如果注释掉public后面的泛型49行就会出错而不注释掉就不会出错。
  2.         {
  3.                 System.out.println("show:"+t);       
  4.         }
  5.         public <Q> void print(Q q)
  6.         {
  7.                 System.out.println("print:"+q);
  8.         }
  9.         public static <W> void method(W w)
  10.         {
  11.                 System.out.println("method:"+w);
  12.         }

  13. }
  14. class GenericDemo4
  15. {
  16.         public static void main(String[] args)
  17.         {
  18.                 Demo <String> d = new Demo<String>();
  19.                 d.show(244);
  20.                 //d.show(4);
  21.                 d.print(5);
  22.                 d.print("woqu");
复制代码


public /*<T>*/void show(T t)//如果注释掉public后面的泛型,d.show(244)就会出错,而不注释掉就不会出错,这事怎么回事?难道,如果public后面加了<T>后,这个函数上的T,和类上的T就不一样了吗?

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马