0

Java中有没有办法从数组中调用方法?我想设计一个原始的棋盘游戏,我想使用一系列方法来表示游戏空间。

4

2 回答 2

2

也许您需要使用某种命令模式,例如

class Board {
   Cell[][] cells = new Cell[5][5];

   void addCell(int i, int j, Cell cell) {
     cells[i,j] = cell;
   }

   void executeCell(int i, int j) {
     cells[i,j].execute(this);
   }
}

interface Cell {
   void execute(Board board);
}

class CellImpl implements Cell {
  void execute(Board board) {
    // do your stuff here
  }
}

您可以根据需要添加尽可能多的实现,只要它们实现了 Cell 接口 - board 就可以执行它们。

于 2013-02-02T04:02:31.833 回答
1

这是基本思想(命令模式)

static Runnable[] methods = new Runnable[10];

public static void main(String[] args) throws Exception {
    methods[0] = new Runnable() {
        @Override
        public void run() {
            System.out.println("method-0");
        }
    };
    methods[1] = new Runnable() {
        @Override
        public void run() {
            System.out.println("method-1");
        }
    };
    ...
    methods[1].run();
}

输出

method-1

或反射

static Method[] methods = new Method[10];

public static void method1() {
    System.out.println("method-1");
}

public static void method2() {
    System.out.println("method-2");
}

public static void main(String[] args) throws Exception {
    methods[0] = Test1.class.getDeclaredMethod("method1");
    methods[1] = Test1.class.getDeclaredMethod("method2");
    methods[1].invoke(null);
}
于 2013-02-02T04:09:59.993 回答