最佳答案
有没有人见过像这样放在方法签名后面的数组 []
?
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 写这个。
有人知道为什么这是允许的吗?
我使用的是 Java7更新10,以防万一。
这在 Java6.http://ideone.com/91rZV1中做同样的事情
顺便说一下,这个不能编译,我也不希望它能编译
public static <T> List mySplit(String s)<T> {
return Collections.emptyList();
}