作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我接到了一项处理康威生命游戏的任务。
我在使用 CellGrid 方法和 simulateStep 方法时遇到问题。活着的概率似乎不起作用,在 simulateStep 中,我遇到了 NullPointerException
错误。
这是我的代码:
public class CellGrid
{
private Cell[][] cells;
/**
* This populates the grid with cells that will be
* either living or dead (with this probability given by lifeChance)
*
* @param size - grid size
* @param lifeChance - probability of each cell starting out alive
*/
public CellGrid(int size, double lifeChance)
{
cells = new Cell[size][size];
Random r = new Random();
for (int i = 0; i < cells.length; i++)
{
for (int j = 0; j < cells.length; j++)
{
Cell c = new Cell();
double nextVal = r.nextDouble();
if (nextVal < lifeChance)
{
c.setAlive(false);
}
else
{
c.setAlive(true);
}
}
}
}
/**
* Iterates the simulation by one step (according to Game of Life rules)
*/
public void simulateStep()
{
for (int y = 0; y < cells.length; y++)
{
for (int x = 0; x < cells.length; x++)
{
boolean living = cells[y][x].isAlive();
int count = countNeighbours(y, x);
boolean result = false;
if (living && count <= 2)
{
result = false;
}
if (living && (count == 3 || count == 4))
{
result = true;
}
if (living && count == 5)
{
result = false;
}
if (living == true && count > 5)
{
result = true;
}
if (living == false && count > 5)
{
result = true;
}
result = cells[y][x].isAlive();
}
}
}
setAlive 方法:
public void setAlive(boolean alive)
{
if (isAlive()== true)
{
this.alive = false;
}
if (isAlive() == false)
{
this.alive = true;
}
}
谢谢大家的帮助!
最佳答案
您应该在构造函数中将 Cell c = new Cell();
更改为 cells[i][j] = new Cell();
。
关于java - 康威的生命游戏(构造器和更新游戏),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33125446/
我正在开发一个使用多个 turtle 的滚动游戏。玩家 turtle 根据按键命令在 Y 轴上移动。当危害和好处在 X 轴上移动时,然后循环并改变 Y 轴位置。我尝试定义一个名为 colliding(
我不明白为什么他们不接受这个作为解决方案,他们说这是一个错误的答案:- #include int main(void) { int val=0; printf("Input:- \n
我正在使用基于表单的身份验证。 我有一个注销链接,如下所示: 以及对应的注销方法: public String logout() { FacesContext.getCurren
在 IIS7 应用程序池中有一个设置 Idle-time out 默认是 20 分钟,其中说: Amount of time(in minutes) a worker process will rem
我是一名优秀的程序员,十分优秀!