[]
有没有人看到像这样放置在方法签名之后的数组?
public static String mySplit(String s)[] {
return s.split(",");
}
public static void main(String... args) {
String[] words = mySplit("a,b,c,d,e");
System.out.println(Arrays.toString(words));
}
印刷
[a, b, c, d, e]
过去,奇怪的符号是“C”兼容性,但我也不会想象有人用 C 写这个。
有谁知道为什么甚至允许这样做?
我正在使用 Java 7 update 10,以防万一。
这在 Java 6 中做同样的事情。http://ideone.com/91rZV1
顺便说一句,这不会编译,我也不希望它编译
public static <T> List mySplit(String s)<T> {
return Collections.emptyList();
}