使用Java,有没有办法引用一个方法并动态生成一个线程?
例如,如果您调用了一个方法,该方法spawn()
将采用另一个方法引用的参数,然后它会产生一个运行所引用方法的线程。我想代码看起来像:
void spawn(**wayToReferenceANumberOfDifferentMethods currentMethodToLaunch**) {
new Thread(){
public void run() {
// **way to launch the currentMethodToLaunch**
}
}.start();
}
为了使上述工作,我想我需要能够引用一种method
. 如果这不可能,为什么会这样?