问候
我正在用Java开发我的第一个应用程序,我想知道如何执行以下操作
我创造了这个
public class Test
{
...
public void control()
{
final ArrayList<Module> mods = new ArrayList<Module>();
if (i == 0)
{
mods.add( null );
mods.add(moduleList.get( i ));
Thread t = new Thread( new Runnable()
{
public void run()
{
StartController(mods);
}
});
}
}
public void StartController(ArrayList<Module> modList)
{
//Do Stuff
}
}
但是我无法做到这一点!他找不到StartController。
我想使代码保持与此接近。有没有办法做到这一点?
最佳答案
看起来100%正确,但是在这种类型的呼叫不起作用的情况下,通常的解决方案是:
Test.this.StartController(mods)
代替
StartController(mods)
关于java - 类内的调用方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5354821/