- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经在我的程序中实现了异常处理,但现在我遇到的问题是,当异常发生并在 catch block 中处理时,它不会从发生的地方继续,而是返回到开头程序,因此在 catch block 中所做的任何更改都是无用的。
简单的例子
public class Example {
public static void main(String[] args) {
int x;
boolean repeat = true;
Scanner input = new Scanner();
do {
try {
x = input.nextInt();
System.out.println("Success!");
repeat = false;
}
catch(InputMismatchException e) {
System.out.println(e.getMesasge());
system.out.println("\nYou must enter an integer");
//BTW am I correct in thinking the following clears the buffer?
input.nextLine();
x = input.nextInt();
}
} while (repeat);
但是如果我这样做,程序将返回到 do block 的开头,从而重置 X 的值,而不是从成功消息所在的行继续。
我知道这是因为重复 boolean 值当时为真,因此触发了 while 条件重新开始,但如果我在 catch block 内将其设置为 false,则可能会遇到未处理的异常因为有人仍然可以尝试输入无效的内容。
一旦catch block 处理了异常,有没有办法在抛出异常的行之后返回控制权?
最佳答案
如果您的应用程序将有多个用户输入,那么您应该有多个循环来处理每个输入,因为每个输入都有可能出错并生成异常。
在大多数情况下,如果由于用户输入而发生异常,那么保存该输入的变量中的值无论如何都是不需要的,因为它显然是错误的,或者至少已经降至其初始化的默认值。在这种情况下,通常您希望让用户有机会提供正确的输入。如果不是,则不要将提示放入循环中。
Scanner input = new Scanner(System.in);
String ls = System.lineSeparator();
// We want the User to enter an inclusive number from 1 to 5.
int x = 0;
while (x < 1 || x > 5) {
System.out.print("Enter an Integer Number from 1 to 5: --> ");
try {
x = input.nextInt();
input.nextLine(); // Consume ENTER.
System.out.println("Success! The nextInt() method accepted your input!");
if (x < 1 || x > 5) {
System.err.println("But...this application does not accept it!");
System.err.println("We asked for a number from 1 to 5! Try again..." + ls);
}
}
catch (InputMismatchException ex) {
System.out.println(ex.getMessage());
System.err.println("Invalid Input! An Integer number from 1 to 5 only!" + ls);
//BTW am I correct in thinking the following clears the buffer?
/* YES you are since the nextInt() method does not consume the
the newline character provided by the ENTER key like the nextLine()
method does and therefore provides it on the next input request
which in this case ultimately generates an endless loop of exceptions.
Even if this prompt was successful and control is passed on to the
next prompt and if that prompt was a nextLine() method then it would
be basically skipped over because it would then consume that ENTER
key newline character provided in the last nextInt() method. So
with that in mind, it doesn't hurt to place input.nextline();
directly after the x = input.nextInt(); ether. */
input.nextLine(); // Consume ENTER.
}
}
System.out.println(x + " Was Supplied! - DONE!");
虽然有时它是有目的的,但我个人还是尽量避免针对异常。我认为如果可以的话最好避免它们,这就是为什么对于控制台应用程序我更喜欢只使用 Scanner#nextLine()接受所有键盘输入的方法,例如:
Scanner input = new Scanner(System.in);
String ls = System.lineSeparator();
// Prompt 1:
// We want the User to enter an inclusive number from 1 to 5.
int x = 0;
String userIN = "";
while (x < 1 || x > 5) {
System.out.print("Enter an Integer Number from 1 to 5 (q to quit): --> ");
userIN = input.nextLine();
if (userIN.toLowerCase().charAt(0) == 'q') {
System.out.println("Quitting!");
System.exit(0);
}
// Is it a signed or unsigned integer number with 1 or more digits?
if (userIN.matches("-?\\d+")) {
System.out.println("Success! The nextLine() method accepted your input" + ls
+ "to be a string representation of an Integer value!");
x = Integer.parseInt(userIN);
}
else {
System.err.println("Invalid Input! An Integer number from 1 to 5 only!" + ls);
continue;
}
if (x < 1 || x > 5) {
System.err.println("But...this application does not accept it!");
System.err.println("We asked for a number from 1 to 5! Try again..." + ls);
}
}
System.out.println(x + " Was Supplied! - DONE!" + ls);
// Prompt 2:
// We want the User to enter any float or double type numerical value.
double d = Double.MIN_VALUE;
while (d == Double.MIN_VALUE) {
System.out.print("Enter a float or double type number (q to quit): --> ");
userIN = input.nextLine().toLowerCase().trim();
if (userIN.charAt(0) == 'q') {
System.out.println("Quitting!");
System.exit(0);
}
// Get rid of the type designator from value if it exists.
if (userIN.endsWith("f") || userIN.endsWith("d")) {
userIN = userIN.substring(0, userIN.length() - 1);
}
// Is it a signed or unsigned integer, float, or double type number?
if (userIN.matches("-?\\d+(\\.\\d+)?")) {
System.out.println("Success! The nextLine() method accepted your input" + ls
+ "to be a string representation of an Integer, float," + ls
+ "or double type value!");
d = Double.parseDouble(userIN);
}
else {
System.err.println("Invalid Input! A Float or Double type numerical value is required!" + ls);
d = Double.MIN_VALUE;
}
}
System.out.println(d + " Was Supplied! - DONE!");
关于java - Java中如何处理异常而不必回到try block 的开头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60200999/
我的 blockly.js 文件中有以下代码 Blockly.Blocks['account_number'] = { // Other type. init: function() {
首先抱歉我的英语不好,我正在开发 Image Splitter 应用程序并且已经完成,但是现在的要求是当图像被分割(分成几 block /chunks)那么图像 block 的每一 block (ch
#value: 消息的返回值,当发送到一个 block 时,是该 block 中最后一句话的值。所以 [ 1 + 2. 3 + 4. ] value 计算结果为 7。我发现有时很难使用。有没有办法显式
我想构建一个包含 3 div 的响应式导航栏相同的 width和 height . 我申请了 inline-block到每个 block ,我得到一个我不理解的行为。 问题是,第三 block 由 2
我希望使用 Blockly 来允许非技术人员用户指定测试脚本。 它的一部分需要一个文件选择器,但是,我看不到 Blockly 有一个。是吗? 实际上,我找不到完整的标准 block 列表。谁有网址?
仅当您位于父 block 内部时,父 block 的 props.isSelected 才为 true,但当您在该 block 的 innerBlocks 内进行编辑时则不然。 如何从父 block
仅当您位于父 block 内部时,父 block 的 props.isSelected 才为 true,但当您在该 block 的 innerBlocks 内进行编辑时则不然。 如何从父 block
我想创建一个具有不同背景颜色 block 和不同悬停颜色 block 的导航栏 block 。我可以分别创建不同的悬停颜色 block 或不同的背景颜色 block ,但不能一起创建。所以请告诉我如何
我正在使用看到的代码 here定期执行代码: #define DELAY_IN_MS 1000 __block dispatch_time_t next = dispatch_time(DISPATC
为什么 block 必须被复制而不是保留?两者在引擎盖下有什么区别?在什么情况下不需要复制 block (如果有)? 最佳答案 通常,当您分配一个类的实例时,它会进入堆并一直存在,直到它被释放。但是,
我想弄清楚我这样做是否正确: 如果我有一个 block ,我会这样做: __weak MyClass *weakSelf = self; [self performBlock:^{
我想制作一个 4 block 导航菜单,虽然我已经显示了一个 block ,然后单击打开第二个 block ,从第二个开始选择并再次单击出现第三个 block ,第四个 block 相同...这是我的
例如,这样更好吗? try { synchronized (bean) { // Write something } } catch (Int
我想让一只乌龟检查前方小块的颜色并决定移动到哪里。如果前面的补丁不是白色的,那么乌龟向左或向右旋转并移动。我的 If 决策结构中出现错误,显示“此处应为 TRUE?FALSE,而不是 block 列表
我想创建一个 block 对角矩阵,其中对角 block 重复一定次数,非对角 block 都是零矩阵。例如,假设我们从一个矩阵开始: > diag.matrix [,1] [,2] [
我是区 block 链新手。突然我有一个问题,我们是否可以通过区 block 号来访问以太坊区 block 链上之前的区 block 数据。 例如我创建了一个block1、block2。 block
我是区 block 链新手。突然我有一个问题,我们是否可以通过区 block 号来访问以太坊区 block 链上之前的区 block 数据。 例如我创建了一个block1、block2。 block
我创建了一个等距环境,全部使用 Javascript 和 HTML5 (2D Canvas),大部分情况下工作正常。我面临的问题是使用不同高度的图 block ,然后对图 block 上的对象索引进行
这是令我困惑的代码: public Integer getInteger(BlockingQueue queue) { boolean interrupted = false; try
我有一个基于 TPL 数据流的应用程序,它仅使用批处理 block 和操作 block 就可以正常工作。 我已经添加了一个 TransformBlock 以尝试在发布到批处理 block 之前从源中转
我是一名优秀的程序员,十分优秀!