为了账号安全,请及时绑定邮箱和手机立即绑定

大家帮我看看为什么我会报错

package com.imooc.collection;

import java.util.ArrayList;
import java.util.List;
import java.util.Random;

public class Collections {
	public void testSort1(){
		List<Integer>integerList=new ArrayList<Integer>();
		Random random=new Random();
		Integer k;
		for(int i=0;i<10;i++){
			do{k=random.nextInt(100);}while(integerList.contains(k));
		integerList.add(k);
		}
		System.out.println("------------排序前-------------");
		for (Integer integer : integerList) {
			System.out.println("元素:"+integer);
		}
	   Collections.sort(integerList);
	}

	public static void main(String[] args) {
		// TODO Auto-generated method stub

	}

}

http://img1.sycdn.imooc.com//55c5ba0e0001680403680059.jpg

详细的是 The method sort(list<Integer>)is undefined for the type Collections

正在回答

2 回答

import java.util.Collections;

你没导入包

你调用的是你的类的方法?

0 回复 有任何疑惑可以回复我~

上面List那块是不是忘写了个空格?

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

大家帮我看看为什么我会报错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信