为什么没有结果
package soft.com;
import java.util.Arrays;
public class SortArray1 {
public void Arrays(){
int a[] = { 1, 5, 8, 16, 2, 7, 98, 4, 6, 78, 85, 485, 9875 };
System.out.println(Arrays.sort(a));
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
SortArray1 s=new SortArray1();
s.Arrays();
}
}
为什么没有结果?高手请教。