簡體   English   中英

拋出異常

[英]Throwing Exception

如果用戶輸入失敗,我嘗試拋出異常 TooLongEx 失敗。 一直卡在這上面:(

import java.util.Scanner;
public class MessageTooLong extends Exception {
    public static void main(String args[])
    throws TooLongEx {
        Scanner keyboard = new Scanner(System.in);
        String line;
        char preference;
        int length;
        boolean go = true;
        while (go) {
            System.out.println("Enter a line of text.");
            System.out.println("Use no more than 20 characters.");
            line = keyboard.next();
            length = line.length();
            if (length <= 20) {
                    System.out.println("You entered " + length + " characters, which is an acceptable length.");
                    System.out.println("Would you like to enter another line?");
                    System.out.println("Enter 'y' to continue or 'n' to quit.");
                    preference = keyboard.next().charAt(0);
                if ((preference == 'y') || (preference == 'Y')) {
                    go = true;
                } else {
                    go = false;
                }
            } else {
                throw new TooLongEx();
            }
        }
    }
}

似乎對我來說工作得很好。

為了

class TooLongEx extends Exception {}

我得到(對於輸入長度> 20)

MessageTooLong.main (MessageTooLong.java:26) 的線程“主”TooLongEx 中的異常

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM