发布网友 发布时间:2022-04-23 15:38
共4个回答
热心网友 时间:2023-10-08 18:13
没有错啊。。
将print 改为println后:
追答上面代码确实没错,报错在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正确吗?编译器等级是多少?