gpt4 book ai didi

java - 查找二维数组长度?

转载 作者:行者123 更新时间:2023-11-30 06:36:55 24 4
gpt4 key购买 nike

我知道 array.length 返回行数,但我正在寻找每行的长度。显然 array[0].length 没有这样做。有什么想法吗?

最佳答案


jcomeau@intrepid:~/rentacoder$ cat /tmp/test.java
public class test {
public static void main(String[] args) {
int[][] blah = {{1, 2}, {3, 4, 5}};
System.out.println("lengths: " + blah.length + ", " + blah[0].length +
", " + blah[1].length);
}
}
jcomeau@intrepid:~/rentacoder$ (cd /tmp && java test)
lengths: 2, 2, 3

似乎有效。

关于java - 查找二维数组长度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4176409/

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