gpt4 book ai didi

java - Java中数组初始值设定项中带有尾随逗号的数组

转载 作者:IT老高 更新时间:2023-10-28 20:40:47 25 4
gpt4 key购买 nike

数组初始化器可用于在编译时初始化数组。如下所示的带有尾随逗号的初始化程序可以正常编译。

int a[][] = {{1,2,} ,{3,4,} , {5,6,},}; //Trailing commas cause no compiler error

for(int i=0;i<a.length;i++)
{
for(int j=0;j<2;j++)
{
System.out.print(a[i][j]+"\t");
}
System.out.println();
}

输出:

1        2        
3 4
5 6

与上面的讨论一样,一维数组也是合法的。

int[] b = {1, 2, 3, 4, 5, 6,}; //A trailing comma causes no compiler error

for(int i=0;i<b.length;i++)
{
System.out.print(b[i]+"\t");
}

输出:

1        2        3        4        5        6

即使以下是合法的语法,也可以正常编译。

int c[][] = {{,} ,{,} , {,},}; 

编译器应该期望在逗号 , 之后和之前有一个常量值(或另一个初始化器)。这是如何编译的?编译器是否只是忽略了这样的逗号或在这种情况下发生了其他事情?

最佳答案

后面的逗号被忽略。来自 Java specification :

A trailing comma may appear after the last expression in an array initializer and is ignored.

关于java - Java中数组初始值设定项中带有尾随逗号的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11621917/

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