我正在为一个项目制作国际象棋游戏,我想做的第一件事是创建一个框架,然后用 64 个 JButton(组织为 8x8)填充它,每个 JButton 将充当棋盘上的方格。我对 Java 还是很陌生,但我仍然认为我不应该得到我得到的错误,它不是在不久前发生的,但是当框架之前确实加载时,没有一个 JButtons做过。
在使用 3D 数组向我的 JButtons 添加坐标时,我似乎遇到了问题,我不断收到错误消息“方法 add(ChessSquare) 未针对 ChessBoard 类型定义”,此外 Eclipse 一直在为我提供帮助我的错误,但我认为接受它们可能会使事情变得更糟。
另一个问题是当我尝试从 ChessSquare 中的 3D 数组中保存正方形的坐标时。
我目前有 2 个课程,ChessBoard 和 ChessSquare,我正在尝试让 ChessBoard 使用 ChessSquare 来制作棋子。
对不起,如果我不是很清楚,我非常累。
提前感谢您的帮助。
这是我的代码:
木板:
import java.awt.GridLayout;
import java.io.IOException;
import javax.swing.JFrame;
import Logic.ChessSquare;
public class ChessBoard {
//chess board constructor
public ChessBoard() throws IOException {
//create grid and grid dimensions
GridLayout grid = new GridLayout(8,8);
//create frame and set specifications of frame
JFrame frame = new JFrame();
frame.setVisible(true);
frame.setSize(458, 458);
frame.setTitle("I'm starting to prefer C");
//initialise 3D array
ChessSquare[][] square = new ChessSquare[8][8];
//create 64 instances of ChessSquare and assign each square as an element in the 3D array
for (int i = 0; i < 8; i++){
for(int l = 0; l < 8; l++){
square[i][l] = new ChessSquare();
this.squarePos(square[i][l]); //this is where my main gripe is
}
}
}
public static void main(String[] args) throws IOException{
new ChessBoard();
}
}
正方形:
package Logic;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JButton;
//chess square class, 1 instance of which for each square in the grid
public class ChessSquare extends JButton {
/**
*
*/
private static final long serialVersionUID = 1L;
//instance variables for position and piece
public int squarePos;
public String selectedPiece;
//accessor method for position
public void squarePos(){
int squarePos = ChessBoard.square;
}
//constructor for chess squares
public ChessSquare() throws IOException {
BufferedImage buttonIcon = ImageIO.read(new File("E:\\Eclipse\\ChessF\\src\\Images\\EmptySquare.jpg"));
JButton button = new JButton(new ImageIcon(buttonIcon));
}
}