gpt4 book ai didi

java - 需要在for循环中声明变量

转载 作者:搜寻专家 更新时间:2023-11-01 02:36:54 26 4
gpt4 key购买 nike

<分区>

我是新手,但在仔细阅读其他问题后找不到这个问题的答案。

为什么有时需要声明变量有时不需要?我举两个例子:

示例 1:这里,我们不必在 for 循环之前声明 i

class ForDemo {
public static void main(String[] args){
for(int i=1; i<11; i++){
System.out.println("Count is: " + i);
}
}

示例 2:这里我们需要在循环之前声明i

class BreakWithLabelDemo {
public static void main(String[] args) {

int[][] arrayOfInts = {
{ 32, 87, 3, 589 },
{ 12, 1076, 2000, 8 },
{ 622, 127, 77, 955 }
};
int searchfor = 12;

int i;
int j = 0;
boolean foundIt = false;

search:
for (i = 0; i < arrayOfInts.length; i++) {
for (j = 0; j < arrayOfInts[i].length;
j++) {
if (arrayOfInts[i][j] == searchfor) {
foundIt = true;
break search;
}
}
}

if (foundIt) {
System.out.println("Found " + searchfor + " at " + i + ", " + j);
} else {
System.out.println(searchfor + " not in the array");
}
}

如果您还可以告诉我为什么我还必须初始化变量 j = 0 如果在 for 循环中我已经分配了值 0,我将不胜感激。

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