public class TestProtaice {
public <T> void f(T... x) {
System.out.println(x.getClass().getName());
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
TestProtaice gm = new TestProtaice();
gm.f(23, "1232", gm);
gm.f("123", 12);
gm.f(12,"1313");
gm.f("123", "sd",12);
gm.f("123", 12,12,"aa");
}
我们会发现只要字符串在前 我说的是String 和Integer类型组合的话,就返回Serializable 而如果整型在前就返回Comparable 这是为什么
}
|
|