📄 position.java
字号:
package russion;/** * <p>Title: RussionCube</p> * <p>Description: TheClassicGame</p> * <p>Copyright: Copyright (c) 2002</p> * <p>Company: Cqu</p> * @author Ghostliang * @version 1.0 */public class Position{ private int row; private int column; public Position(int row,int column) { this.row = row; this.column = column; } public void setRow(int row) { this.row = row; } public void setColumn(int column) { this.column = column; } public int getRow() { return this.row; } public int getColumn() { return this.column; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -