Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
  1. Will the output be:

    • at index 0: Hey
    • at index 1: Jay
    • at index 2: null
    • at index 3: null
    • at index 4: null
  2. 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!

share|improve this question
9  
And what's wrong with trying? – pcalcao Apr 5 '12 at 12:24
5  
Did you try running it? – alex Apr 5 '12 at 12:25
5  
Run it, it won't bite... – Anonymous Apr 5 '12 at 12:25
5  
you aren't in a tech test with only a phone are you :( – krystan honour Apr 5 '12 at 12:25
5  
I really wish we had a not even the slightest amount of effort on part of the question asker close option.. – Voo Apr 5 '12 at 12:26
show 3 more comments

closed as too localized by Voo, Anonymous, Jarrod Roberson, mre, assylias Apr 5 '12 at 12:29

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

5 Answers

up vote 3 down vote accepted

None will be correct, It will cause NullPointerException

null cannot be compared using any operator, so there is no question of sorting nulls

share|improve this answer

It will throw a NullPointerException.

If you want to be able to sort null values, you must write your own Comparator. In there, you can sort them as you like.

share|improve this answer

Depends on how you write your compareTo method in your Comparable class or Comparator.

Oh wait, these are Strings, surely you can just try it yourself and see?

share|improve this answer

Wouldn't it just throw an NPE, seeing as Arrays.sort(Object[]) uses the compareTo() method of the objects in the array?

Anyway, provide your own Comparator to Arrays.sort() and you can define whatever behaviour you want for nulls.

share|improve this answer

It'll generate an exception for the record

share|improve this answer
1  
So you think he's in a test, but you give him the answer anyway! – weston Apr 5 '12 at 12:30

Not the answer you're looking for? Browse other questions tagged or ask your own question.