0
Java Related
Is there any difference between public static void main (String [] args) and public static void main (String args[]) ?
2 ответов
+ 3
no there is not, they are just two ways to declare arrays. Both work, although the first is used more often.
+ 2
both the same you dont need to use args either you can put any variable in there.