Java variable function parameters
- by Olaseni
How do you duplicate this feature in Java?
In C#, you could use the params keyword to specify variable parameter lists for functions.
How do you do that in Java?
Or do you have to resort to multiple overloads?