gpt4 book ai didi

java - 将对象的二维数组存储为字符串

转载 作者:行者123 更新时间:2023-12-02 07:33:18 24 4
gpt4 key购买 nike

我有一个 Cell 类对象的二维数组。在一个单独的 Maze 类中,我从文件中读取 2D 数组,现在我需要一个将整个数组作为字符串返回的方法。我不知道如何去做这件事,任何帮助都会很棒(我在 Cell 类中有一个方法,它将以字符串形式返回单元格)。

最佳答案

使用 2 个嵌套循环打印矩阵:

String temp = "";

// foreach row...
for( int i = 0; i < cells.length; i++ )
{

// ... move across columns
for( int j = 0; j < cells[i].length; j++ )
{

temp += (cells[i][j] + " ");

}

// let's move to a new line
temp += "\n";

}

System.out.println(temp);

假设您的 Cell 对象具有 toString() 方法。

关于java - 将对象的二维数组存储为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12650088/

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