gpt4 book ai didi

java - 在 switch 语句的默认情况下继续

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:29:03 25 4
gpt4 key购买 nike

如果我有这个:

do {
int x = scannerScan.nextInt();

switch(x)
{
case 1:
System.out.println("Stuff");
break;
case 2:
System.out.println("Pink cows are fluffy and can fly.");
default:
continue;
}
}
while(true);

如果达到默认情况会怎样?我试图在 Internet 和 Stackoverflow 上查找资料,但找不到任何关于 continue in the default case 的内容,这与 Java 语言有关。

最佳答案

continue 循环语句

The continue statement skips the current iteration of a for, while , or do-while loop. The unlabeled form skips to the end of the innermost loop's body and evaluates the boolean expression that controls the loop. [...]

在您的代码中,循环 while(true); 将继续。该语句对 switch 代码块没有影响。

关于java - 在 switch 语句的默认情况下继续,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29662631/

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