程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> java-求教,關於scanner的close方法彈 NoSuchElementException

java-求教,關於scanner的close方法彈 NoSuchElementException

編輯:編程綜合問答
求教,關於scanner的close方法彈 NoSuchElementException

先謝謝各位大神,代碼如下:
import java.util.Scanner;
import java.util.Calendar;
public class Test {
static int i,j;
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("歡迎光臨!");
long begin=Calendar.getInstance().getTimeInMillis();
//預定房間
Hostel h=new Hostel();

//調用房間顯示方法
h.show();
//選擇房間
while(true){
try{
select1();
select2();
//調用房間預訂方法
if(h.book(i,j)) break;
}catch (OutIndexOfException e){
e.printStackTrace();
}

}

//退訂房間
while(true){
try{
select1();
select2();
if(h.unsubscribe(i,j)) break;
}catch (OutIndexOfException e){
e.printStackTrace();
}
}
System.gc();
long end=Calendar.getInstance().getTimeInMillis();
System.out.println(end-begin);
}
public static int select1() throws OutIndexOfException{
Scanner s1=new Scanner(System.in);
i=s1.nextInt()-1;
// s1.close();
if(i4){
throw new OutIndexOfException("第"+(i+1)+"層沒有房間");
}
return i;

}
public static int select2() throws OutIndexOfException{
Scanner s2=new Scanner(System.in);
j=(s2.nextInt())-1;
//s2.close();
if(j9){
throw new OutIndexOfException("第"+(j+1)+"間房不對外預定");
}
return j;
}

}

代碼中注釋掉的s1,s2方法,如果不注釋掉就會爆異常Exception in thread "main" java.util.NoSuchElementException,如果注釋掉可以運行,但是掃描器沒關閉,感覺不安全!!! 還有個問題是顯示問題兩個select方法中的i4和j9是i4,j9;圖片說明圖片說明

最佳回答:


你確定跟close有關?只看到你 i4 和 j9 沒定義。

studyorlearn
studyorlearn
snailplus
studyorlearn
studyorlearn
studyorlearn
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved