资源简介
用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\.checkst
文件 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
相关资源
- mysql数据处理,java用户登录处理
- 法律咨询信息系统(java+jsp+sqlserver)
- Java快速开发平台源码(renren-fast)
- 锐聘学院QST青软JavaWeb十二个打包
- 3.3.6微信支付JAVA版demo
- javaweb网上购物系统源码(附数据库脚
- javaweb校园宿舍系统(附数据库脚本)
- JavaWeb书城项目(附数据库脚本)
- 基于JAVA_JSP电子书系统(源码+数据库
- Java网络编程知识点总结.xmind
- 一站式Java网络编程 BIO-NIO-AIO资料源码
- jsp讲解
- 基于SSH框架的JavaWeb项目—人员信息管
- javaweb实现的邮件收发系统(附数据库
- Java 仿QQ(附客户端以及服务端源码)
- Java TCP IP Socket
- java定时发送邮件(基于quartz)
- Java Swing开发的《星际争霸》游戏
- java+数据库商品交易管理系统(附数据
- 使用java语言编译一个计算器
- java swing工资管理系统(源码+数据库
- JAVALibrary
- 微信企业号回调模式Java版
- 顺丰丰桥接口开发详细教程源码含下
- Java博客概要设计文档
- 药品进销存管理系统(论文范文_JSP
- 奖学金管理系统java+jsp+mysql
- 毕设参考——基于java酒店管理
- Java写的一个简单的字体更改程序
- java8学习教程之lambda表达式的使用方法
评论
共有 条评论