我得到了JButtons的二维数组,我需要知道它们中的哪一个被点击了。其实我需要坐标 j 和 k 。 代码如下所示:
public void loop_button(){
int size = jSlider1.getValue();
getContentPane().remove(jSlider1);
JButton[][] numButton = new JButton[size][size];
for(int i=0;i<size;i++){
for(int j=0;j<size;j++){
numButton[i][j] = new JButton("");
getContentPane().add(numButton[i][j]);
}
}}
有什么方法可以解决这个问题吗?