public void test(int... integers, String str) { // error
...
}
错误:
方法 test 的变量参数类型 int 必须是最后一个参数。
public void test(String str, int... integers) {}
它运作良好。这有什么原因吗?
public void test(int... integers, String str) { // error
...
}
错误:
方法 test 的变量参数类型 int 必须是最后一个参数。
public void test(String str, int... integers) {}
它运作良好。这有什么原因吗?