这个程序的目标是找到一个用户输入4个点的圆圈区域,如果用户键入除了整数之外的任何内容我想要输出一条消息(“仅限数字”)
package areacircleexception;
import java.util.Scanner;
public class AreaCircleException {
public static double distance
(double x1, double y1, double x2, double y2)
{
double dx = x2 - x1;
double dy = y2 - y1;
double dsquared = dx*dx + dy*dy;
double result = Math.sqrt (dsquared);
return result;
}
public static double areaCircle(double x1, double y1, double x2, double y2)
{
double secretSauce = distance(x1, y1, x2, y2);
return areaCircleOG(secretSauce);
}
public static double areaCircleOG(double secretSauce)
{
double area = Math.PI * Math.pow(secretSauce, 2);
return area;
}
我认为我的问题与下面的方法有关。
public static int getScannerInt (String promptStr){
Scanner reader = new Scanner (System.in);
System.out.print ("Type The x1 point please: ");
int x1 = reader.nextInt();
return 0;
}
public static void main(String[] args)
{
Scanner reader = new Scanner (System.in);
boolean getScannerInt = false;
while(!getScannerInt)
{
try
{
System.out.print ("Type The x1 point please: ");
int x1 = reader.nextInt();
System.out.print ("Type The x2 point please: ");
int x2 = reader.nextInt();
System.out.print ("Type The y1 point please: ");
int y1 = reader.nextInt();
System.out.print ("Type the y2 point please: ");
int y2 = reader.nextInt();
double area = areaCircle(x1, x2, y1, y2);
System.out.println ("The area of your circle is: " + area);
getScannerInt = true;
}
catch(NumberFormatException e)
{
System.out.println("Please type in a number! Try again.");
} }
}
}
除了异常程序正常工作,但是当我输入一个字符串时,它不处理我的异常,我无法找出原因。
答案 0 :(得分:2)
你没有抓住正确的Exception
。这就是您输入catch
时永远不会进入String
的原因。使用String会引发InputMismatchException
而不是NumberFormatException
。您可以通过执行以下操作来更改catch语句以捕获所有Exception
:
catch(Exception e){...}
编辑:即使进行了上述更改,您也可能会陷入无限循环。要解决这个问题,你需要在你进入catch块的while循环的每次迭代中到达行的末尾。将你的阻止块更改为此,你应该是好的:
catch(Exception e){
System.out.println("Please type in a number! Try again.");
reader.nextLine();
}
答案 1 :(得分:2)
当你调用nextInt时,你的下一个输入不是一个有效的整数,你得到的例外是:
java.util.InputMismatchException
此外,您可以致电
,而不是等待例外hasNextInt()
如果下一个传入令牌是整数,则此方法返回true,否则返回false。