An array parameter declaration causes a syntax error where the invocations happen. Yet the main method uses String[] instead of String... How can I understand this inconsistency?
package domain.test;
import utilities.CConsole;
public class Tester {
public static void main(String[] args)
{
Test1 t = new Test1();
t.method1(0); // the array will exist but have a length of zero
t.method1(0, (Object[])null); // the array will not exist
t.method1(0, "a");
t.method1(0, "a", "b");
CConsole.pw.format("\n");
t.method2(0); // the array will exist but have a length of zero
t.method2(0, (String[])null); // the array will not exist
t.method2(0, "a");
t.method2(0, "a", "b");
CConsole.pw.format("\n");
}
}
class Test1 {
void method1(int number, Object... args) // Object[] causes syntax errors
{
if (args == null)
CConsole.pw.format("args == null\n");
else
{
CConsole.pw.format("args != null ");
CConsole.pw.format("args.length %d\n", args.length);
}
}
void method2(int number, String... args) // String[] causes syntax errors
{
if (args == null)
CConsole.pw.format("args == null\n");
else
{
CConsole.pw.format("args != null ");
CConsole.pw.format("args.length %d\n", args.length);
}
}
}
How can the inconsistency be explained?
The following is included for the person that said that it compiles: To get this error change method1() to use Object[].
Summary edit: The lesson seems to be this. As @Andrew Barber has emphasized, String... is distinct from String[]. They are not interchangeable generally, so do not try to treat them the same way (even though I could name reasons why they seem interchangeable). They are interchangeable in the case of main(). In the case of main() some people might call this sugar.
String[]in function arguments is valid, it shouldn't generate a syntax error. What errors does it print/ – birryree Oct 23 '11 at 1:26String[]as a parameter – ryanprayogo Oct 23 '11 at 1:27void method1(int number, Object[] args){}is not a syntax error. – Ted Hopp Oct 23 '11 at 1:30