嗨我必须创建一个具有一定维度的对象矩阵。它是可能的。矩阵的维度是int而内容是object。我该怎么办?
答案 0 :(得分:3)
一点点搜索不会造成伤害。这很简单。
Object[][] matrix = new Object[rows][cols];
答案 1 :(得分:2)
你需要像
这样的东西myobjectMatrix foo[][] = new myobjectMatrix[width][height]
// Remember that everything in the matrix is initialized to null so
// you must initialize everything
foo[0][0] = new myobjectMatrix();