在书上我只看到这样子创建线程:
Thread t = new Thread((Runnable)o);
t.start();我想问一下如果:
((Runnable)o).run();
这样会不会产生线程?