java sort 的用法

发布网友 发布时间:2022-04-23 15:38

我来回答

4个回答

热心网友 时间:2023-10-08 18:13

没有错啊。。

将print 改为println后:


追问我用的是Eclipse indigo,编译出错
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
Arrays cannot be resolved

at HelloWorld.main(HelloWorld.java:173)

追答上面代码确实没错,报错在173行?是不是类重名了。。

热心网友 时间:2023-10-08 18:13

void static sort(List list)
根据元素的自然顺序 对指定列表按升序进行排序
是属于Collections类的一个静态方法,也就是说可以这样调用:
int[] a={.....};
Collections.sort(a);
或者:
ArrayList a=new ArrayList(1,2,3,4....);
Collections.sort(a);
这样可以么?追问不行,The method sort(List) in the type Collections is not applicable for the arguments (int[])

热心网友 时间:2023-10-08 18:14

int aaArrays[]={3,21,55,42,69,85,11,26,94,59};
    Arrays.sort(aaArrays);
    for(int x=0;x<aaArrays.length;x++){
        System.out.println(aaArrays[x]+"");
    }

我这里没有报错例,是不是你的JRE版本有问题

热心网友 时间:2023-10-08 18:14

Arrays不就在java.util包(java.util.Arrays)追问我导入的是java.util.*;从proposals中没发现Arrays

追答项目的jre正确吗?编译器等级是多少?

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com