0

我有两个问题。首先,我在代码的第一部分创建了一个异常处理,即重试概念。

do {
    try {
        if(exitType.length()==1){
            char exitChar = exitType.charAt(0);
            exit = exitChar;
            if (exit == 'Y' || exit == 'y' || exit == 'N' || exit == 'n') {
                x = 1; 
            } else {
                throw new StringException("Invalid letter...\n");
            }
        } else {
            throw new StringException("Invalid input a string...\n");
        } 
    } catch(StringException i) {
        System.out.println("-------------------------------------------");
        System.out.print("You typed: " + exitType + i);
        System.out.println("-------------------------------------------");

        System.out.println("Try again? (y/n): ");
        exitType = input.next();
        x = 0;
    }

当用户输入除 y/n 之外的字母时,输出将是:

Try again? (y/n): w
-------------------------------------------
You typed: wStringException: Invalid letter...
-------------------------------------------

第一个问题:如何将 StringException: Invalid letter... 放在下一行,使其不在“w”旁边(只是为了输出的清晰和整洁)。希望你能得到我。

顺便说一句,我创建了自己的异常:

public class StringException extends Exception {
    public StringException(String message) {
        super(message);
    }   
}

其次,我不知道如何在要求用户输入选择字母的这部分添加异常处理:

public static void operation() {
    Scanner input = new Scanner(System.in);
    String choiceString = "";
    char choice = 'a';
    System.out.print("Enter letter of choice: ");
    choiceString = input.next();
    if (choiceString.length() == 1) {
        choice = choiceString.charAt(0);
        System.out.println("-------------------------------------------");

        switch(choice) {
            case 'a': {
                try {
                    System.out.print("Enter width: ");
                    double width = input.nextDouble();
                    System.out.print("Enter height: ");
                    double height = input.nextDouble();
                    System.out.print("What is the color of the shape? ");
                    String color = input.next();
                    System.out.println("-------------------------------------------");
                    Shape cia;
                    Shape rec = new Rectangle(color, width, height);
                    cia = rec;
                    System.out.println(rec);
                    Rectangle r = new Rectangle(color, width, height);
                    r.print();
                } catch(InputMismatchException i) {
                    System.out.println("InputMismatchException caught");
                }
                break;  
            }
            case 'b': {
            //**** 
            }
            case 'c': {
            //****
            }
            default:
                System.out.println("Invalid choice...");
        }
    } else {
        System.out.println("Invalid input...");
    }

我只需要知道应该将 try-catch 块放置在提示选择字母的部分的位置。

4

2 回答 2

0

第一个问题:在你的捕获中,你有

System.out.print("You typed: " + exitType + i);

只需更改为

System.out.print("You typed: " + exitType + "\n" + i);

\n是一个转义代码,充当新行。为了完整起见,您实际上应该使用\n\r系统兼容性

try/catch我并没有真正得到第二个问题,如果你把你放在周围还不够choiceString = input.next();吗?它还取决于您在捕获异常后如何管理它。

于 2013-01-11T13:26:38.270 回答
0

第一个问题:如何将 StringException: Invalid letter... 放在下一行,使其不在“w”旁边

改变

System.out.println("You typed: " + exitType);
System.out.println(" ");
System.out.println(i);

System.out.println("You typed: " + exitType + i);

println在打印参数中的内容后添加换行符(与 不同print

其次,我不知道如何在要求用户输入选择字母的这部分添加异常处理:

您可以将其添加到default案例中,或者更好的是,在else

else {
        throw new ...
    }
于 2013-01-11T13:24:46.473 回答