📄 history.java
字号:
public class History{ private StringBuffer history; public History() { clear(); } public void add_command(String string, MyTimer mytimer) { this.history.append("\n" + string + " " + mytimer.elapsed() + " "); } public void add_coords(int i, int i_0_) { this.history .append(Integer.toString(i) + " " + Integer.toString(i_0_) + " "); } public void clear() { this.history = new StringBuffer(""); } public String get_text() { return this.history.toString(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -