Java显示棋盘_Java的GUI学习:显示国际棋盘

编写一个程序,显示一个棋盘,棋盘中的每一个白色格和黑色格都是将背景设置为黑色或者白色的JButton.

import java.awt.Color;

import java.awt.GridLayout;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

public class ChessBord extends JFrame {

JButton[][] grids = new JButton[8][8];

public ChessBord() {

setLayout(new GridLayout(8, 8));

int count = 0;

for(int i = 0; i < grids.length; i++, count++) {

for(int j = 0; j < grids.length; j++) {

grids[i][j] = new JButton();

if(count % 2 == 0) {

grids[i][j].setBackground(Color.WHITE);

System.out.println("a");

} else {

grids[i][j].setBackground(Color.BLACK);

}

add(grids[i][j]);

count++;

}

}

}

public static void main(String[] args) {

JFrame chessBorder = new ChessBord();

chessBorder.setTitle("国际象棋棋盘");

chessBorder.setLocation(300, 200);

chessBorder.setSize(400, 400);

chessBorder.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

chessBorder.setVisible(true);

}

}

0818b9ca8b590ca3270a3433284dd417.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值