There is also String[]args.
And, as I learned recently, you can nowadays also just write String... args
- inu-no-policemen
1
July 18, 2017, 10:20 pm
In java, when declating fields or local variables, `int foo[]` is actually the best way. When declaring parameters, `int[] foo` should be used. This is due to the fact, that with `int[] foo, bar[], snafu[][]`, snafu is actually 3dimensional.
Please Signin or Signup to add a comment