Is there a functional difference between these methods?
public static void main(String[] args) { } public static void main(String args[]) { }
I also prefer to mark the args as final.
args
final
public static void main(final String[] args) { }