0

Is there a difference?

What's the difference between.... public static void main(String [ ] args ) and public static void main(String args [ ] )

1st Aug 2016, 3:14 PM
Sidepocket
Sidepocket - avatar
2 odpowiedzi
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
1st Aug 2016, 5:13 PM
Marcin Knychała
Marcin Knychała - avatar
0
Thanks brother..
1st Aug 2016, 5:21 PM
Sidepocket
Sidepocket - avatar