+ 1
array
what is the difference between Strings[] and args[]?
1 ответ
+ 2
First of , Strings[] is a variable name for an array , args[] is also a variable name.
They could be named anything.
String[5] , however means that you are declaring an array that can hold Strings and has a capacity of 5.