先謝謝各位大神,代碼如下:
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 沒定義。