即使不创建 Runner 对象,我也可以从线程的 run 方法访问 Runner 类中的 process 方法吗?为什么?
class Runner {
public void process() {
// some multithreaded code
}
}
main() {
Thread t1 = new Thread(new Runnable() {
public void run() {
process();
}
});
t1.start();
}