This maybe isn't an answer but anyway; there is one more way to create threads:
Thread t = new Thread() {
public void run() {
// Code here
}
}
This maybe isn't an answer but anyway; there is one more way to create threads:
Thread t = new Thread() {
public void run() {
// Code here
}
}