📄 chessche.java
字号:
package chs;
import java.util.List;
public class ChessChe extends ChessItem {
public ChessChe(ChessBoard b, String id, int x, int y) {
super(b, id, x, y);
}
public boolean moveTo(int x, int y) {
if (!isOnLine(x, y)) {
System.err.println("not on a line:(" + this.x + "," + this.y
+ ")->(" + x + "," + y + ")");
return false;
}
// 中间有子
List lst = b.findItemOnLine(this.getX(), this.getY(), x, y);
if (lst != null && lst.size() > 0) {
System.err.println("found :" + ((ChessItem) lst.get(0)).getId());
return false;
}
return true;
}
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -