с реализует runnable :
Код: Выделить всё
public class MyRunnable implements Runnable {
public void run() {
//Code
}
}
//Started with a "new Thread(new MyRunnable()).start()" call
Код: Выделить всё
public class MyThread extends Thread {
public MyThread() {
super("MyThread");
}
public void run() {
//Code
}
}
//Started with a "new MyThread().start()" call
Подробнее здесь: https://stackoverflow.com/questions/541 ... ad-in-java