I'm not able to try it myself right now(no computer around) but what if I have this:
Object [] obj = new Object[5]; // all values in array will be null
obj[1] = new String("Jay");
obj[3] = new String("Hey");
Arrays.sort(obj);
Will the output be:
- at index 0: Hey
- at index 1: Jay
- at index 2: null
- at index 3: null
- at index 4: null
or will it be:
- at index 0: null
- at index 1: null
- at index 2: null
- at index 3: Hey
- at index 4: Jay
or it'll be something else?
Thanks!
not even the slightest amount of effort on part of the question askerclose option.. – Voo Apr 5 '12 at 12:26