最后我尝试了一些泛型。我想出了这段代码:
public class Test {
static <T> void f(T x) {
x = (T) (Integer) 1234;
System.out.println(x);
}
public static void main(String[] args) {
f("a");
f(1);
f('a');
f(1.5);
f(new LinkedList<String>());
f(new HashMap<String, String>());
}
}
我运行了这个并得到了这个输出:
1234
1234
1234
1234
1234
1234
无一例外!这怎么可能?