gpt4 book ai didi

java - 是否可以在 Java 中声明多个 'for' 循环终止?

转载 作者:行者123 更新时间:2023-12-03 22:54:22 27 4
gpt4 key购买 nike

我知道 Java 中 for 循环中的语法。通常看起来像

for(initialization; termination; increment){
...
}
//Example
for(int i=0; i<100; i++){
...
}

而且我也已经知道我们可以声明几个初始化和增量,比如

//Example
int i,j;
// ini1, ini2 ; term ; inc1, inc2
for(i=0, j=100; i<100; i++, j--){
...
}

我非常明确的问题是:是否也可以有多个终止?有些东西可能像

//Example
int i,j;
// ini1, ini2 ; term1, term2; inc1, inc2
for(i=0, j=100; i<100, j>34; i++, j--){
...
}

因为我正在尝试它并且它给了我一个错误,我不想在循环中使用太多的 if 语句来确定是继续还是中断。

它是 sintax,还是根本不可能?提前致谢。

最佳答案

您可以提供任何boolean 条件,其中可能包括逻辑 boolean 运算符,例如!&& 和/或| |:

for(i=0,    j=100;  i<100 && j>34;    i++,   j--){

只要计算结果为 boolean,它们可以简单或复杂。

关于java - 是否可以在 Java 中声明多个 'for' 循环终止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18387331/

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