gpt4 book ai didi

java - 哪个 For 循环将首先执行并首先完成?

转载 作者:行者123 更新时间:2023-12-01 07:43:23 25 4
gpt4 key购买 nike

我对嵌套循环变体感到困惑。不知何故,这些循环给出了相同的结果,但我无法理解它。就像,在第二个代码中,它在 col

 for (int row = 0; row < 4; row++)                                    
{
for (int col = 0; col < 3; col++)
{
System.out.print(values[row][col] + " ");
}

System.out.println();
}
for (int row = 0; row < values.length; row++)
{
for (int col = 0; col < values[row].length; col++)
{
System.out.print(values[row][col] + " ");
}

System.out.println();
}

最佳答案

我不确定您想在这里问什么,但我想您只是想知道这两个代码块之间的区别。

我将用一个简单的例子向您解释这一点:

import java.util.*;
public class HelloWorld{

public static void main(String []args){
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int m = sc.nextInt();
int[][]values = new int[n][m];
for(int i=0; i<n;i++){
for(int j=0; j<m; j++){ //read a 5 x 8 array
values[i][j]= sc.nextInt();
}
}
System.out.print("Input Array :");
for(int i=0; i<n;i++){
for(int j=0; j<m; j++){
System.out.print(values[i][j] +" ");
}
System.out.println("");
}
System.out.print("First Code :");
for (int row = 0; row < 4; row++)
{
for (int col = 0; col < 3; col++)
{
System.out.print(values[row][col] + " ");
}
System.out.println();
}
System.out.print("Second Code :");
for (int row = 0; row < values.length; row++)
{
for (int col = 0; col < values[row].length; col++)
{
System.out.print(values[row][col] + " ");
}

System.out.println();
}
}
}

输入:

5 8 
3 3 3 3 3 3 3 3
4 4 4 4 4 4 4 4
5 5 5 5 5 5 5 5
6 6 6 6 6 6 6 6
7 7 7 7 7 7 7 7

程序的输出是:

Input Array :3 3 3 3 3 3 3 3 
4 4 4 4 4 4 4 4
5 5 5 5 5 5 5 5
6 6 6 6 6 6 6 6
7 7 7 7 7 7 7 7
First Code :3 3 3
4 4 4
5 5 5
6 6 6
Second Code :3 3 3 3 3 3 3 3
4 4 4 4 4 4 4 4
5 5 5 5 5 5 5 5
6 6 6 6 6 6 6 6
7 7 7 7 7 7 7 7

因此,正如您所看到的,如果values.length = 4且values[row].length = 3,第一个 block 的工作方式与第二个 block 完全相同,否则它们将给出不同的结果。要遍历数组,好的做法是使用 array.length,而不是对 length 的值进行硬编码。

关于java - 哪个 For 循环将首先执行并首先完成?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60688295/

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