class funcA implements FunctionArrayInterface // 函数A { public void runit() { System.out.PRintln("你运行了函数 funcA"); } }
class funcB implements FunctionArrayInterface // 函数B { public void runit() { System.out.println("你运行了函数 funcB"); } }
class funcC implements FunctionArrayInterface // 函数C { public void runit() { System.out.println("你运行了函数 funcC"); } }
public class Untitled1 { public static void main(String args[]) { FunctionArrayInterface[] funcs = new FunctionArrayInterface[3]; // 利用数组进行批量处理 funcs[0] = new funcA(); funcs[1] = new funcB(); funcs[2] = new funcC();