0
我將如何檢查錯誤類前面的兩個空格是否爲空,並且不會超出邊界?現在,這是我所擁有的檢查網格世界中的位置
public void act()
{
if(canMove())
{
Location loc = getLocation();
Location nextLocation = loc.getAdjacentLocation(getDirection());
nextLocation = nextLocation.getAdjacentLocation(getDirection());
if (nextLocation == null)
{
move();
move();
}
}
}
這似乎不工作,因爲該錯誤什麼都不做。
的錯誤現在移動,但我怎麼把它留在界格? – Hulu