difference fn(String... args) vs fn(String[] args)

JavaVariadic Functions

Java Problem Overview


Whats this syntax useful for :

    function(String... args)

Is this same as writing

    function(String[] args) 

with difference only while invoking this method or is there any other feature involved with it ?

Java Solutions


Solution 1 - Java

The only difference between the two is the way you call the function. With String var args you can omit the array creation.

public static void main(String[] args) {
	callMe1(new String[] {"a", "b", "c"});
	callMe2("a", "b", "c");
	// You can also do this
	// callMe2(new String[] {"a", "b", "c"});
}
public static void callMe1(String[] args) {
	System.out.println(args.getClass() == String[].class);
	for (String s : args) {
		System.out.println(s);
	}
}
public static void callMe2(String... args) {
	System.out.println(args.getClass() == String[].class);
	for (String s : args) {
		System.out.println(s);
	}
}

Solution 2 - Java

The difference is only when invoking the method. The second form must be invoked with an array, the first form can be invoked with an array (just like the second one, yes, this is valid according to Java standard) or with a list of strings (multiple strings separated by comma) or with no arguments at all (the second one always must have one, at least null must be passed).

It is syntactically sugar. Actually the compiler turns

function(s1, s2, s3);

into

function(new String[] { s1, s2, s3 });

internally.

Solution 3 - Java

with varargs (String...) you can call the method this way:

function(arg1);
function(arg1, arg2);
function(arg1, arg2, arg3);

You can't do that with array (String[])

Solution 4 - Java

You call the first function as:

function(arg1, arg2, arg3);

while the second one:

String [] args = new String[3];
args[0] = "";
args[1] = "";
args[2] = "";
function(args);

Solution 5 - Java

On the receiver size you will get an array of String. The difference is only on the calling side.

Solution 6 - Java

class  StringArray1
{
    public static void main(String[] args) {
        callMe1(new String[] {"a", "b", "c"});
        callMe2(1,"a", "b", "c");
    callMe2(2);
        // You can also do this
        // callMe2(3, new String[] {"a", "b", "c"});
}
public static void callMe1(String[] args) {
        System.out.println(args.getClass() == String[].class);
        for (String s : args) {
            System.out.println(s);
        }
    }
    public static void callMe2(int i,String... args) {
        System.out.println(args.getClass() == String[].class);
        for (String s : args) {
            System.out.println(s);
        }
    }
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNrjView Question on Stackoverflow
Solution 1 - Javabruno condeView Answer on Stackoverflow
Solution 2 - JavaMeckiView Answer on Stackoverflow
Solution 3 - JavamichelemarconView Answer on Stackoverflow
Solution 4 - JavakgiannakakisView Answer on Stackoverflow
Solution 5 - JavaJesperEView Answer on Stackoverflow
Solution 6 - JavakamalView Answer on Stackoverflow