Java入門自定義異常&模擬借書系統

disable發表於2021-09-09

要求:
提示使用者輸入 按照書名或者圖書序號來查詢資訊;
如果使用者輸入資訊有誤就會丟擲提示資訊並且要求重新輸入;

(1)定義圖書查詢異常類findexception,繼承自Exception。

public class findexception extends Exception {

        public findexception(String message){

            super(message); 
        }
}

(2)編寫一個查詢圖書系統類。

import java.util.*;

public class booktest {

    protected int id = 0;
    protected String name;
    static int i = 1;

    String[] books = new String[] { "論語", "高數", "英語" };

    public static Scanner sc = new Scanner(System.in);

    public booktest() {

    }

    public static void bookfind() throws findexception, InputMismatchException {

        System.out.println("輸入命令:1-按照命令查詢圖書 2-按照序號查詢圖書");
        int com = sc.nextInt();

        if (com == 1) {

            i = 2;
            booktest bt = new booktest();
            bt.searchname();

        } else if (com == 2) {
            i = 2;
            booktest bt = new booktest();
            bt.searchtype();

        } else {
            throw new InputMismatchException("輸入錯誤,請根據提示輸入數字命令");

        }

    }

(3)測試類


Public class booktest{
    public static void main(String[] args) {
        booktest bt = new booktest();
        while (i == 1) {
            try {

                bookfind();

            } catch (findexception e) {

                System.out.println("圖書不存在!");
                // System.out.println("輸入命令:1-按照命令查詢圖書 2-按照序號查詢圖書");
                i = 1;
            } catch (ArrayIndexOutOfBoundsException e) {

                System.out.println("圖書不存在!");
                i = 1;
            }

        }
    }

}

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/200/viewspace-2807425/,如需轉載,請註明出處,否則將追究法律責任。

相關文章