在每个gui按钮中,我都包含了所有获胜的可能性,但是,当我按x按钮时,随机生成的位置可能会与旧的获取位置重叠
position[0][0]=jButton1;
position[1][0]=jButton4;
position[2][0]=jButton7;
position[0][1]=jButton2;
position[1][1]=jButton5;
position[2][1]=jButton8;
position[0][2]=jButton3;
position[1][2]=jButton6;
position[2][2]=jButton9;
if (jTextField1.getText().equals("x")) {//textfield where i choose do i wanna be x or o
position[0][0].setText("x");
int xordinate= r.nextInt(3);
int yordinate= r.nextInt(3);
position[xordinate][yordinate].setText("o");