我在想,爲什麼我不能使用{「a」,「b」}作爲字符串數組方法參數的輸入?爲什麼我不能使用{「a」,「b」}作爲字符串數組方法參數的輸入
public static void fun(String[] s) {
}
public static void main(String[] args) {
String[] s = {"a", "b"};
// OK
fun(s);
// This line is not accepted by compiler
fun({"a", "b"});
}
這不是java的定義。 – 2013-04-03 18:46:11