创建对象矩阵

时间:2011-12-08 10:04:23

标签: java multidimensional-array

嗨我必须创建一个具有一定维度的对象矩阵。它是可能的。矩阵的维度是int而内容是object。我该怎么办?

2 个答案:

答案 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();