?? controlsystemss.java
字號:
/* * ControlSystemSS.java */package EDU.gatech.cc.is.abstractrobot;/** * This is the superclass for a SocSmall robot Control System. * When you create a contol system by extending this class, * it can run within JavaBotHard to control a real robot (maybe someday) * or JavaBotSim in simulation. * <P> * <A HREF="../COPYRIGHT.html">Copyright</A> * (c)1997, 1998 Tucker Balch * * @see Simple * @author Tucker Balch * @version $Revision: 1.1 $ */public class ControlSystemSS extends ControlSystemS { protected SocSmall abstract_robot; /** * Initialize the object. Don't override this method, use * Configure instead. */ public final void init(Simple ar, long s) { super.init(ar, s); abstract_robot = ((SocSmall) ar); } }
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -