How can I add input arguments to run method in java threading?
@Override
public void run(int a, String b){
// do something
}
// The method run(int) of type particle_explode must override or implement a supertype methodJava(67109498)
If I add argument, it said The method run(int) of type particle_explode must override or implement a supertype methodJava(67109498)
So how can I add argument to it?