thread.start()
从我的主程序调用时,该方法run()
在线程中调用,如下所示:
public class ServerThread implements Runnable {
public void run() {
//executable code
}
public void myMethod() {
//code to hopefully respond to a button press in main class.
}
}
我需要myMethod
从我的主类中调用现有线程。但据我了解,这是不可能使用Runnable
. 还有其他方法吗?