public class MainClass{
public static void main(String[] argv){
new MyThread().start();
}
}
class MyThread extends Thread {
public void run() {
for (int i = 1; i <= 10; i++) {
System.out.println("Counting: " + i);
}
}
}
Counting: 1
Counting: 2
Counting: 3
Counting: 4
Counting: 5
Counting: 6
Counting: 7
Counting: 8
Counting: 9
Counting: 10
You do not call the run method directly; instead, call the start method and the Thread will execute run.
A thread is done being a thread when its target run() method completes.
Once a thread has been started, it can never be started again.
The order in which runnable threads are chosen to run is not guaranteed.
|