📄 square.java
字号:
package net.sourceforge.gomoku;/** * @author <a href="mailto:anton.safonov@gmail.com">Anton Safonov</a> */public abstract class Square { public abstract int getRow(); public abstract int getCol(); public abstract void setRowCol(int row, int col); public final void copyPosition(final Square from) { setRowCol(from.getRow(), from.getCol()); } public final void init() { setRowCol(-1, -1); } public String toString() { return "[" + getRow() + ":" + getCol() + "]"; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -