-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
  • 11,092
  • 6
  • 67
  • 93

1 Answers1

0

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

Dorian Gray
  • 2,781
  • 1
  • 8
  • 25