+ 6
Java main method declaration
These three options are equivalent? public static void main(String[] args) {} public static void main(String args[]) {} public static void main(String...args) {}
2 Antworten
+ 2
Try to change args to some other name and you will see that its only array declaration.
+ 1
you must try