gpt4 book ai didi

java - 了解Java异常处理: Simple Try Catch blocks

转载 作者:行者123 更新时间:2023-12-01 17:18:54 24 4
gpt4 key购买 nike

我正在尝试学习 Java 异常处理。我编写了以下代码:

import java.util.*;
public class Problem1
{
static Scanner length = new Scanner(System.in);
public static void main(String[] args)
{
double x;
double y;

System.out.println("Input a length in Feet and than Inches.");

x = length.nextDouble();
y = length.nextDouble();

try
{
System.out.println("Feet - Inches:" + x * 12);
System.out.println("Inches - Centimeters:" + y * 2.14);
}

catch (InputMismatchException imeRef)
{
System.out.println("Do not use letters" + imeRef.toString());
}
}
}

该程序只是将英尺和英寸的输入转换为英寸。我尝试通过输入以下内容来打破它:

-1
e

程序中断,但我没有正确捕获和处理异常。你知道我做错了什么吗?

谢谢

最佳答案

您需要将读取用户输入的 2 个输入语句移至 try堵塞。仅当读取输入并在 catch 中处理该错误时才会引发错误,这些语句需要位于 try 中。 block ,因为 catch 将仅处理其相应的 try 中抛出的异常。 block 。

try {
x = length.nextDouble(); // moved inside try
y = length.nextDouble(); // moved inside try
System.out.println("Feet - Inches:" + x * 12);
System.out.println("Inches - Centimeters:" + y * 2.14);
}

关于java - 了解Java异常处理: Simple Try Catch blocks,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20137909/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com