📄 testredgeneral.java
字号:
package finalexam;
public class testRedGeneral {
public static void main(String[] argc){
System.out.println("start test");
RedGeneral a = new RedGeneral();
System.out.println(a.toString());
try{a.move(-1,0);}catch(Exception e)
{System.out.println(e.getMessage());}
System.out.println(a.toString());
try{a.move(0,1);}catch(Exception e)
{System.out.println(e.getMessage());}
System.out.println(a.toString());
try{a.move(1,-1);}catch(Exception e)
{System.out.println(e.getMessage());}
System.out.println(a.toString());
try{a.move(-1,0);}catch(Exception e)
{System.out.println(e.getMessage());}
System.out.println(a.toString());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -