克隆一个JButton [] []矩阵

时间:2012-04-18 09:44:03

标签: java arrays swing user-interface jbutton

我正在尝试克隆一个JButton [] []

例如,

JButton[][] Matrix = new JButton[8][8];

someFunction(Matrix);

void someFunction(JButton[][] Matrix)
{
  JButton[][] temp = Matrix.clone();
}

当想要克隆矩阵时,我的函数可以操作矩阵而无需更改我的GUI进行测试。我对JButton进行hashValue并且它们没有给出相同的值,这意味着它们应该被正确克隆并且它不仅仅是一个引用?

谢谢,

0 个答案:

没有答案