我试图将棋盘的x和y坐标指向特定的数组值。例如,x:145 y:347应该指向我棋盘上的[3,1]。棋盘的大小是460乘460,但是我不知道在计算方面该做什么。阵列是8乘8,与棋盘相同。
代码:
public Container c;
c = getContentPane();
setBounds(100,75,460,460);
public JPanel pnlMain = new JPanel(new GridLayout(2, 1));
pnlMain.setBounds(2, 2, 460, 860);
c.add(pnlMain);
public void MousePressed(MouseEvent e){
if(e.getX() < 460 && e.getY() < 460){
int x = e.getX() / 57;
int y = e.getY() / 175;
}
}
调试时我没有得到正确的数组位置。
答案 0 :(得分:0)
既然你说你的棋盘是460x460,它应该是:
if(e.getX() < 460 && e.getY() < 460){
int x = e.getX() / 57;
int y = e.getY() / 57;
}