gpt4 book ai didi

java - 评估 Tic-Tac-Toe 的获胜状态

转载 作者:行者123 更新时间:2023-12-02 03:22:51 25 4
gpt4 key购买 nike

我想尝试评估下面的井字游戏中的获胜状态。

所以我最终通常做的是尝试在 for 循环中的按钮上使用 getText() 方法,并评估例如是否 cells[0][i].getText () 等于 cells[0][1]cells[0][2]
然后我看看 cells[0][2] 是否不为空(因此不等于 ""),那么这将完成第一行。
问题是这不起作用,如果有人为我提供这种方法的更好替代方案(如果有的话),我将不胜感激。

package tictactoe;

import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;

import javax.swing.JFrame;

public class TicTacToe implements ActionListener
{
JFrame window;
static JButton[][]cells=new JButton[3][3];
boolean playing;
char turn='X';
public TicTacToe()
{
//SETS UP THE WINDOW
window=new JFrame("TicTacToe");
window.setSize(new Dimension(400,400));
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.setResizable(false);
//**********************//
createCells();

window.setVisible(true);
}
public static void main(String[] args)
{
new TicTacToe();
}
private void createCells()
{
window.setLayout(new GridLayout(3,3));
for(int i=0;i<cells.length;i++)
{
for(int j=0;j<cells.length;j++)
{
cells[i][j]=new JButton();
cells[i][j].addActionListener(this);
window.add(cells[i][j]);
}
}
}

@Override
public void actionPerformed(ActionEvent e)
{
playing=true;
JButton _buttonPressed=(JButton)e.getSource();
while(playing)
{
if(turn=='X')
{
_buttonPressed.setText("X");
_buttonPressed.setEnabled(false);
turn='O';
}
else
{
_buttonPressed.setText("O");
_buttonPressed.setEnabled(false);
}
}

}
}

最佳答案

我没有看到您在哪里评估获胜状态,但请尝试从点击监听器中删除无限循环。

@Override
public void actionPerformed(ActionEvent e) {
JButton _buttonPressed = (JButton) e.getSource();

_buttonPressed.setText("" + turn);
_buttonPressed.setEnabled(false);
if (turn == 'X') {
turn = 'O';
} else {
turn = 'X';
}
}
<小时/>

这些大多是建议,所以如果您愿意,请随意忽略它。

使 TicTacToe 类本身成为一个 JFrame - 无需实例化。

public class TicTacToe extends JFrame implements ActionListener {
private JButton[][] cells = new JButton[3][3];
private char turn = 'X';
private boolean playing;

public TicTacToe() {
setTitle("TicTacToe");
setSize(new Dimension(400, 400));
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setResizable(false);
createCells();
pack();
}

其次,启动 Swing 应用程序的推荐方法是在其自己的线程上,如下所示

public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
TicTacToe ttt = new TicTacToe();
ttt.setVisible(true);
}
});
}

关于java - 评估 Tic-Tac-Toe 的获胜状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39396158/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com