📄 doall.java
字号:
/* * Created on 30.07.2005 * */package jvm;import jvm.math.*;import jvm.obj.*;/** * @author Martin Schoeberl (martin@jopdesign.com) * */public class DoAll { public static void main(String[] args) { TestCase tc[] = { new Basic(), new Basic2(), new TypeMix(), new Static(), new Array(), new Clinit(),// new Float(), new Imul(), new jvm.math.Long(), new LongField(), new MultiArray(), new Switch(),// new Except(), }; for (int i=0; i<tc.length; ++i) { System.out.print(tc[i].getName()); if (tc[i].test()) { System.out.println(" ok"); } else { System.out.println(" failed!"); } } // jbe.DoAll.main(args); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -