找传奇、传世资源到传世资源站!

java实现黑白棋

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

java 实现黑白棋
from clipboardpublic class Reversi extends JFrame implements ActionListener{    
    JButton jbStart = new JButton("开始游戏");  
    JButton jbStop = new JButton("结束游戏");  
    MyPanel panel = new MyPanel();  
    Container c = this.getContentPane();  
      
    int width = Toolkit.getDefaultToolkit().getScreenSize().width;  
    int height = Toolkit.getDefaultToolkit().getScreenSize().height;  
    boolean canPlay = false;  
    boolean isBlack = false;  
    int count = 0;  
    int f = 1;  
    int cntBlack = 0;  
    int cntWhite = 0;  
    int reversi[][] = new int[9][9];  
      
    public Reversi() {  
        Init();  
        addListener();  
    }  
      
    public void Init() {  
        this.setTitle("Reversi");  
        this.setSize(500, 500);  
        this.setResizable(false);  
        this.setLayout(null);  
        this.setVisible(true);  
        this.setDefaultCloseOperation(this.EXIT_ON_CLOSE);  
        this.setLocation((width - 500)/2, (height - 500)/2);  
        jbStart.setBounds(135, 430, 100, 30);  
        jbStop.setBounds(265, 430, 100, 30);  
        panel.add(jbStart);  
        panel.add(jbStop);  
          
        panel.setLayout(null);  
        panel.setSize(500, 500);  
        c.add(panel);  
    }  

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复