While looking over a source file, i saw two ways of array initialization. I wonder is there a difference between
int[] value = new int[0];
and<
No, there's no difference.
Both create an array with 0 elements.