gpt4 book ai didi

java - 排序() "cannot find symbol"

转载 作者:太空宇宙 更新时间:2023-11-04 14:55:50 25 4
gpt4 key购买 nike

好吧,我在 Collection.sort(myintarray); 行上遇到了一些问题...它说 cannot find symbol 试图对其列表进行排序,以便将其排序为最低数组中的数字排在第一位。

package uppgift.pkg1;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Arrays;

/**
* @author Fredrik
*
*/
public class Uppgift1 {

public static void main(String[] args) {
//Anrop av metod
skapaArray();
}

public static void skapaArray() {
List<Integer> myintarray = new ArrayList<Integer>();
int ints = 0;
int size = 1;

while (ints < size) {
myintarray.add(ints);
ints++;
}
Collection.sort(myintarray);
System.out.println(myintarray.size());
}
}

最佳答案

您应该使用Collections :

java.util.Collections;

和:

Collections.sort(myintarray);

关于java - 排序() "cannot find symbol",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23214674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com