0
Is there a difference?
What's the difference between.... public static void main(String [ ] args ) and public static void main(String args [ ] )
2 Réponses
0
I do not think there is Any difference. According to Java:beginner's guide (sixth edition) the below two lines work exactly the same:
int counter[] = new int[3];
int[] counter = new int[3];
and I think that's the same situation here.
Hope this helps
0
Thanks brother..