C# "params" Keyword Equivalent Coming To Java... Kinda
Java SDK 1.5 (code named Tiger) is going to support variable length argument lists. In C#, this is accomplished via the params keyword. In Java, they are going to use an ellipsis token.
Posted by Keith Wedinger on Fri, June 6, 2003 @ 6:07AM
[sellsbrothers.com: Windows Developer News]
Yeah it's pretty lame because, as far as I can tell from reading the specification, you can't strongly type it. So it's always going to be an array of type Object as opposed to .NET where the params argument can be strongly typed.