• 大小: 16KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-06-24
  • 语言: Java
  • 标签: 生命游戏  java  

资源简介

用java实现生命游戏,代码结构清楚,运行良好。界面逻辑均为java实现。

资源截图

代码片段和文件信息


package data;


/**
 * 这是一个细胞类
 * 
 *
 **/
public class CellArray {
private int [][] cellArray;/*定义细胞矩阵*/
private int row; /*定义细胞行*/
private int col; /*定义细胞列*/

public CellArray(int rowint col)/*细胞类构造函数*/
{
this.row = row;
this.col = col;
cellArray = new int [row][col];
}

public int getRow() {
return row;
}



public void setRow( int row) {
this.row = row;
}



public int getCol() {
return col;
}



public void setCol(int col) {
this.col = col;/*列赋值*/
}



public int getCell(int x int y)
{
if(x >= 0 && x =0 && y return cellArray[x][y];
return -1;
}

public void  setCell(int xint yint cell) {
this.cellArray[x][y]=cell;
}



}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        310  2018-09-12 09:11  lifeGame\.checkstyle

     文件        301  2018-09-05 09:14  lifeGame\.classpath

     文件      47623  2018-09-12 09:41  lifeGame\.pmd

     文件        582  2018-09-12 09:41  lifeGame\.project

     文件        598  2018-09-05 09:14  lifeGame\.settings\org.eclipse.jdt.core.prefs

     文件       1036  2018-09-12 10:49  lifeGame\bin\data\CellArray.class

     文件       1091  2018-09-12 10:49  lifeGame\bin\data\CellState.class

     文件       1731  2018-09-12 19:51  lifeGame\bin\lifeGame\Main$1.class

     文件       4223  2018-09-12 19:51  lifeGame\bin\lifeGame\Main.class

     文件       1758  2018-09-12 10:49  lifeGame\bin\service\GameService.class

     文件      13639  2018-09-12 09:39  lifeGame\reports\pmd-report.txt

     文件        793  2018-09-12 10:10  lifeGame\src\data\CellArray.java

     文件        233  2018-09-05 10:51  lifeGame\src\data\CellState.java

     文件       3072  2018-09-12 19:51  lifeGame\src\lifeGame\Main.java

     文件       1775  2018-09-05 22:51  lifeGame\src\service\GameService.java

     目录          0  2018-09-12 20:00  lifeGame\bin\data

     目录          0  2018-09-12 20:00  lifeGame\bin\lifeGame

     目录          0  2018-09-12 20:00  lifeGame\bin\service

     目录          0  2018-09-12 20:00  lifeGame\src\data

     目录          0  2018-09-12 20:00  lifeGame\src\lifeGame

     目录          0  2018-09-12 20:00  lifeGame\src\service

     目录          0  2018-09-12 20:00  lifeGame\.settings

     目录          0  2018-09-12 20:00  lifeGame\bin

     目录          0  2018-09-12 20:00  lifeGame\reports

     目录          0  2018-09-12 20:00  lifeGame\src

     目录          0  2018-09-12 20:00  lifeGame

----------- ---------  ---------- -----  ----

                78765                    26


评论

共有 条评论