在泛型方法里可以用基本数据类型。
- public class Try
- {
- public static void main(String[] args)
- {
- show(new Xxx());
- show(10000);
- show("hello");
- show(2.3);
- }
- static <W> void show(W w)
- {
- System.out.println(w);
- }
- }
- class Xxx
- {
- int a;
- }
复制代码
输出结果:
jtry.Xxx@659e0bfd
10000
hello
2.3 |
|