Can anyone tell me if there's a way to run a thread and give it an argument ? its like Giving an argument to that Runnable's run method , 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 ;
}
}