i was wondering whats the difference between these two
String values[] = new String[10]
String[] values = new String[10]
Both of these are used the same way. We can manipulate data in them the same way so whats the difference.
The Java tutorial uses the latter one for declaring arrays. Which one should we use ?