谁能告诉我是否有办法运行一个线程并给它一个参数?就像给那个Runnable的run方法一个参数,就像
class Test implements Runnable
{
public void run( char a ) { // the question's here ,
//is there any way to run a thread ,
//indicating an argument for it ?
do something with char a ;
}
}