最佳答案
I'm looking at a path finding tutorial and I noticed a return statement inside a void method (class PathTest, line 126):
if ((x < 0) || (y < 0) || (x >= map.getWidthInTiles()) || (y >= map.getHeightInTiles())) {
return;
}
I'm a novice at Java. Can anyone tell me why it's there? As far as I knew, return inside a void method isn't allowed.