gpt4 book ai didi

java - 如何在一种方法上使用两台扫描仪

转载 作者:行者123 更新时间:2023-12-02 01:51:43 24 4
gpt4 key购买 nike

今天早些时候我问过how to re-try/catch input mismatch exception without getting caught by infinite loop

但这是两个过程,首先游戏会询问用户网格的大小,稍后启动后它会要求他设置一个标志或跨过一个单元格(如果我的游戏将是除此之外,它会打印出周围地雷的数量),但我收到一些奇怪的错误代码:

int gridSize = 0;
try (Scanner scanner = new Scanner(System.in)) {
System.out.println("how much the size of the grid do you want");
while (!scanner.hasNextInt()) {
System.err.println("Try again, this time with a proper int");
scanner.next();
}
gridSize = scanner.nextInt();
}
MinesWeeper grid = new MinesWeeper(gridSize);
grid.printOut();

int choice = 0;
try (Scanner scanner = new Scanner(System.in)) {
System.out.println("1-to step over a cell\n2-to set a flag on the cell");
while (!scanner.hasNextInt()) {
System.err.println("Try again, this time with a proper int");
scanner.next();
}
choice = scanner.nextInt();
}

boolean Continue = true;
while (Continue) {
switch (choice) {
case 1:
if (grid.chooseCell(1)) {
Continue = false;
}
break;
case 2:
grid.chooseCell(2);
break;
}
}

错误:

how much the size of the grid do you want
3
A B C<br/>
Try again, this time with a proper int
1 * * *
Exception in thread "main" java.util.NoSuchElementException
2 * * *
at java.util.Scanner.throwFor(Scanner.java:862)
3 * * *
1-to step over a cell
at java.util.Scanner.next(Scanner.java:1371)
at Array.Main.main(MinesWeeper.java:188)
2-to set a flag on the cell

奇怪的是,它在我的打印语句之间打印异常消息(网格是一个语句,指令也是一个)

当我进行搜索时,我发现我不能在同一地点使用两台扫描仪,但如果它们在尝试使用资源时初始化,我该如何将它们分开

最佳答案

这个:

try (Scanner scanner = new Scanner(System.in)) {
// ...
}

是一个 try-with-resources block 。当 block 执行完毕后,它将调用 scanner.close()

对于您的用例,问题在于扫描程序反过来调用System.in.close()。一旦流关闭,您就无法再次读取它,因此当您随后尝试创建另一个从 System.in 读取的扫描仪时,您将收到异常。

对代码最简单的修复是合并两个 try-with-resources block ,并重用相同的 Scanner,这样您就不会在中间关闭它。无论如何,没有充分的理由拥有两个单独的扫描仪。

但实际上,您根本不应该使用 try-with-resources。

一般规则是不要关闭您不拥有的流,这大致意味着不要关闭您没有打开的流,给定Java 没有“所有权”的概念。您没有打开 System.in,而是 JVM 打开了。

您不知道程序中还有什么依赖于它继续打开。如果您确实关闭了这样的流,则会为该流的 future 读者弄乱该流的状态。

现在,您可能认为您需要使用 twr,因为否则您的 IDE 会在扫描器上标记资源泄漏警告。一般来说,您可能想关闭扫描仪;在这种特定情况下,您不需要。如果这就是您使用 twr 的原因,请忽略(或抑制)该警告。

关于java - 如何在一种方法上使用两台扫描仪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52907500/

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