Possible Duplicates:
Java array argument “declaration” syntax
What is the ellipsis for in this method signature?
I've stumbled upon a function that has a String... strings as a parameter. What is the significance of this? I'm assuming it means any number of string arguments but isn't that the point of List?
function doStuff(String... strings) {
//Code
}
I'd appreciate an explanation of its purpose and usage in applications. Thanks