我有一些代码涉及检查用户输入以查看输入的输入是字符串还是int,并根据结果执行不同的代码。我使用Integer.parseInt来确定用户输入是否是整数,如果不是则抛出NumberFormatException。
但是,为了控制代码的流程,我正在使用try / catch语句,catch块用于包含将在用户的输入是字符串时运行的代码(即抛出NumberFormatException。
QN
这是使用try / catch块的可接受方式吗?我尝试使用谷歌搜索,但我能找到的只是用于处理抛出异常的catch块的示例,而不是像我正在使用的那样。
import java.io.*;
import java.util.*;
public class Datafile{
private static Scanner input = new Scanner(System.in);
public static void main(String[] args) throws IOException {
BufferedWriter bw = new BufferedWriter(new FileWriter("C:\\Users\\Kence\\workspace\\Java 8 - Beyond the Basics - Working Files\\Practice Programs\\src\\Practice Data Edited",true));
String data = null;
boolean end = false;
boolean cont = true;
String dataEntered = null;
int menuChoice = printMenu();
while(!end){
switch(menuChoice){
case 1:
System.out.println("Please enter a line of data or press 0 to exit back to the main menu");
dataEntered = input.nextLine();
try {
if(Integer.parseInt(dataEntered) == 0){
break;
}
} catch (Exception e) {
data += dataEntered + "\n";
while(cont){
System.out.println("Data entered.Please enter the next line of data or press quit to exit back to the main menu.");
dataEntered = input.nextLine();
if(Integer.parseInt(dataEntered) == 0){
cont = false;
break;
}else{
data+= dataEntered;
System.out.println("Current data entered is " + dataEntered);
}
}
}
break;
case 2:
System.out.println("2 Entered");
break;
case 3:
System.out.println("3 Entered");
break;
case 4:
System.out.println("4 Entered");
break;
}//End of switch statement
menuChoice = printMenu();
}
input.close();
}//End of main
public static void printStars(){
for(int i = 0; i<66 ; i++){
System.out.print("*");
}
System.out.println();
}
public static int printMenu(){
printStars();
System.out.println("System Started");
printStars();
System.out.println("Enter 1 to input a new line of data");
System.out.println("Enter 2 to list all data");
System.out.println("Enter 3 to save existing data");
System.out.println("Enter 4 to load data");
printStars();
return Integer.parseInt(input.nextLine());
}
}
答案 0 :(得分:2)
将try / catch块用于控制流程并不是最佳实践,但如果您不关心最佳实践,那么它是“可接受的”。
有关检查数字是否为整数的其他方法的示例,请参阅Determine if a String is an Integer in Java。您可以使用其中一个示例,然后如果是整数检查它是否等于零。
此外,在您的代码中,您似乎第二次调用Integer.parseInt(dataEntered)
仍然会抛出一个不会被捕获的异常。
答案 1 :(得分:0)
例外通常只应在特殊情况下使用(请参阅名称来自何处?)。它们在紧密循环中尤其糟糕,因为执行开销很高。使用无效的用户输入似乎很常见,所以我会寻找另一种方式。 Take a look at this answer
但这完全取决于语言。例如,在Python中,try / catch是事实上的编码方式(duck-typing)。