public static void main(String[] args){
}
what is the difference between public static void main(String[] args) and public static void main(String args[])
public static void main(String[] args){
}
what is the difference between public static void main(String[] args) and public static void main(String args[])
There is no difference. String[] args is the same as String args[], just a different notation.