• 大小: 15KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-29
  • 语言: Java
  • 标签: java版  

资源简介

五子棋 java版 博弈算法

资源截图

代码片段和文件信息

package com.common.constant;

import javax.swing.ImageIcon;

/*定义一些公共常量*/
public class Constant {
   public final static  int BOARD_WIDTH = 480;//棋盘的
   public final static  int BOARD_HEIGHT = 480;
   public final static  int BOARD_ROWS = 15;//棋盘的
   public final static  int BOARD_COLS = 15;
   public final static  int SPAN = 30;
   
   public final static  int Player = 2;
   public final static  int COMPUTER =1;
   
   public final static  ImageIcon  Player_ICON= new ImageIcon(“image/w.png“);
   public final static  ImageIcon  COMPUTER_ICON= new ImageIcon(“image/b.png“);
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-11-02 00:01  fiveChess2\
     文件         301  2011-11-01 23:57  fiveChess2\.classpath
     文件         385  2011-11-01 23:57  fiveChess2\.project
     目录           0  2011-11-02 00:01  fiveChess2\.settings\
     文件         629  2011-11-01 23:57  fiveChess2\.settings\org.eclipse.jdt.core.prefs
     目录           0  2011-11-02 00:01  fiveChess2\bin\
     目录           0  2011-11-02 00:01  fiveChess2\bin\com\
     目录           0  2011-11-02 00:01  fiveChess2\bin\com\common\
     目录           0  2011-11-02 00:01  fiveChess2\bin\com\common\constant\
     文件         805  2011-11-02 00:01  fiveChess2\bin\com\common\constant\Constant.class
     目录           0  2011-11-02 00:01  fiveChess2\bin\com\weiyi\
     目录           0  2011-11-02 00:01  fiveChess2\bin\com\weiyi\model\
     文件        5015  2011-11-02 00:01  fiveChess2\bin\com\weiyi\model\Algorithm.class
     目录           0  2011-11-02 00:01  fiveChess2\bin\com\weiyi\view\
     文件        1301  2011-11-02 00:01  fiveChess2\bin\com\weiyi\view\ChessBoard.class
     文件        3575  2011-11-02 00:01  fiveChess2\bin\com\weiyi\view\ChessPanel.class
     目录           0  2011-11-02 00:01  fiveChess2\image\
     文件         250  2011-10-26 17:31  fiveChess2\image\b.png
     文件         250  2011-10-26 17:32  fiveChess2\image\w.png
     目录           0  2011-11-02 00:01  fiveChess2\src\
     目录           0  2011-11-02 00:01  fiveChess2\src\com\
     目录           0  2011-11-02 00:01  fiveChess2\src\com\common\
     目录           0  2011-11-02 00:01  fiveChess2\src\com\common\constant\
     文件         613  2011-11-01 23:57  fiveChess2\src\com\common\constant\Constant.java
     目录           0  2011-11-02 00:01  fiveChess2\src\com\weiyi\
     目录           0  2011-11-02 00:01  fiveChess2\src\com\weiyi\model\
     文件        6689  2011-11-01 23:57  fiveChess2\src\com\weiyi\model\Algorithm.java
     目录           0  2011-11-02 00:01  fiveChess2\src\com\weiyi\view\
     文件         829  2011-11-01 23:57  fiveChess2\src\com\weiyi\view\ChessBoard.java
     文件        3735  2011-11-01 23:57  fiveChess2\src\com\weiyi\view\ChessPanel.java

评论

共有 条评论