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