我必须创建一个使用“is”方法的对象,基本上是声明对象的状态。我不确定这应该如何工作。现在正在将方法编写为布尔值,但我想知道是否应该使用不同的方法,这是代码,
public class Cell
{
public int move;
public Cell(int xmove)
{
xmove = 0;
}
public boolean isempty(int x)
{
if(x == 0)
{
return true;
}
else
{
return false;
}
}
}