问答详情
源自:6-2 学生选课---判断 Set 中课程是否存在

如图,我就输入了“3”,还有“语文”,它就自己走了,还有有时候直接报错出inputMismatchException

List<course> containsList=new ArrayList<course>();

int choice;

System.out.println("需要查看包含几门课程?(0:结束查看。)");

choice=console.nextInt();

while(choice!=0){

for(int i=0;i<choice;i++){

System.out.println("请输入第"+(i+1)+"门课程名字");

course ccr=new course();

String newName=console.next();

ccr.setName(newName);

containsList.add(ccr);

System.out.println("已输入"+ccr.getName());

}

System.out.println("包含全部?"+coursesToSelect.containsAll(containsList));

System.out.println("还需要查看包含几门课程?(0:结束查看。)");

choice=console.nextInt();

}

https://img1.mukewang.com/5b7638030001c8f406230487.jpg

提问者:慕的地3275243 2018-08-17 10:52

个回答

  • omoide
    2018-08-18 17:49:43

    把choice=console.nextInt();放在for里面就可以了,containsAll是检测coursesToSelect是否含有括号中的元素,所以就会false,至于那个InputMisMatchException,其实不太懂,可能是你没描述清楚?