好的,现在我基本上有这段代码:
class a {
public void ab() {
b thread = new b();
thread.bb(this);
}
}
class b {
public void bb(a _a) {
//execute code here in new thread so ab can continue running
}
}
但是,这不会在新线程中打开它,是的,我确实对此进行了研究,我发现的所有解决方案都没有留下任何选项将参数(this)发送到 bb 方法
如何在需要参数的新线程中调用 class.method?