tags:

views:

67

answers:

0

Possible Duplicates:
What is the preferred way to declare a Java array?
Difference between int[] array and int array[]

Hi!

Been learning Java for Android by reading some tutorials. And in lots of the tutorials there are used two different ways of declaring arrays - even in the same project:

public int integers[] = { ... };

public int[] integers = { ... };

Does it matter or are these two basically the same?