gpt4 book ai didi

java - 打印二维字符串

转载 作者:行者123 更新时间:2023-12-02 06:19:55 38 4
gpt4 key购买 nike

我定义了一个二维字符串对象,然后尝试打印它,但没有打印该字符串。有人可以告诉我我在这里缺少什么吗?

String[][] input = { { "a", "b", "c"}, { "a", "b", "a"} };

System.out.println(输入);

输出:

[[Ljava.lang.String;@6475d174

最佳答案

您还没有完全理解数组方面的问题...

int rowIndex, colIndex;
String[][] input = { { "a", "b", "c" }, { "a", "b", "a" } };
System.out.println(input[rowIndex][colIndex]);

//If you want to traverse through the entire 2-D array
//all you will need to do is use two for loops

关于java - 打印二维字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21103440/

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