What is the difference between these two declarations of an array of native types in Java?
double items[] = new double[10];
double[] items = new double[10];
If they are the same is there any reason to prefer one over the other?
|
|
What is the difference between these two declarations of an array of native types in Java?
If they are the same is there any reason to prefer one over the other?
|
|||
|
|
|
There is no real difference; however,
is preferred as it clearly indicates that the type is an array. |
||||||||
|
|
|
There is no difference. I prefer the "type[] name" format at is is clear that the variable is an array (less looking around to find out what it is). EDIT: Oh wait there is a difference (I forgot because I never declare more than one variable at a time): int[] foo, bar; // both are arrays int foo[], bar; // foo is an array, bar is an int. |
|||
|
|
|
|
there isn't really any difference between the two, most of it is purely personal preference though. I personally prefer using type[] name; as it clearly shows the type, and makes it a lot easier when scanning through your own code (as long as it is indented properly - and if you don't know how use some software that does it for you i.e. notepad++ - good for many languages, though just a text editor, and then learn from them - you can't program unless you indent!!!!!) |
||
|
|