スレッドを実行して引数を与える方法があるかどうか誰か教えてもらえますか? その Runnable の run メソッドに引数を与える、sth like
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 ;
}
}