Sort Array in Java

Iniciado por Shell Root, 6 Noviembre 2010, 22:37 PM

0 Miembros y 1 Visitante están viendo este tema.

Shell Root

What the fuck, not understand what happens with the code.
Código (java) [Seleccionar]
/* @Function highestToLowest */
public static Integer[] highestToLowest(Integer[] objArray){
return Arrays.sort(objArray);
}

/* @Function lowestToHighest */
public static Integer[] lowestToHighest(Integer[] objArray){
return Arrays.sort(objArray, Collections.reverseOrder());
}


Errors:
Código (PoC) [Seleccionar]
Constant.java:67: incompatible types
found   : void
required: java.lang.Integer[]
return Arrays.sort(objArray);
                  ^
Constant.java:72: incompatible types
found   : void
required: java.lang.Integer[]
return Arrays.sort(objArray, Collections.reverseOrder());
                  ^
2 errors
Por eso no duermo, por si tras mi ventana hay un cuervo. Cuelgo de hilos sueltos sabiendo que hay veneno en el aire.


Shell Root

o.O. I don't understand. xD
Por eso no duermo, por si tras mi ventana hay un cuervo. Cuelgo de hilos sueltos sabiendo que hay veneno en el aire.

egyware

The function Array.sort return void type.

ammm I don't speak in english :( but I know your solution is
Código (java) [Seleccionar]

/* @Function highestToLowest */
public static Integer[] highestToLowest(Integer[] objArray){
         Arrays.sort(objArray); //sort objArray and store result at objArray
         return objArray; //return objArray
}

/* @Function lowestToHighest */
public static Integer[] lowestToHighest(Integer[] objArray){
        Arrays.sort(objArray, Collections.reverseOrder());
return objArray;
}

Shell Root

Cita de: egyware en  6 Noviembre 2010, 22:55 PMammm I don't speak in english :( but I know your solution is
jejeje menos mal, yo tampoco!

D'oh! no había visto el void
Por eso no duermo, por si tras mi ventana hay un cuervo. Cuelgo de hilos sueltos sabiendo que hay veneno en el aire.

egyware

Cita de: Shell Root en  6 Noviembre 2010, 23:02 PM
D'oh! no había visto el void

El doble D'oh que me di cuando lei tu firma en el ultimo post que postee ¬¬  :laugh: :laugh: :laugh: :laugh:
jaja
que bueno de diste cuenta xDD