-5
public static void main(String[] args){

}

what is the difference between public static void main(String[] args) and public static void main(String args[])

Black Mamba
  • 13,632
  • 6
  • 82
  • 105

1 Answers1

0

There is no difference. String[] args is the same as String args[], just a different notation.

Dorian Gray
  • 2,913
  • 1
  • 9
  • 25