?? node.java
字號:
package eatbean.util.algorithm;import eatbean.util.*;/** * <p>Title: 吃豆子</p> * <p>Description: A*算法中用到的節點</p> * <p>Copyright: Copyright (c) Nothing</p> * <p>Company: Raindrop</p> * @author "Nothing" * @version 1.0 */public class Node extends Pos { public Node parent = null; public Node(int x, int y) { super(x, y); } public Object clone() { /**@todo: Override this eatbean.util.Pos method*/ return null; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -