this program runs....
class th implements Runnable{
public static void main(
String args[]){
Thread t = new Thread(new th());
t.run();
}
public void run(){
for (int i = 1; i<11; i++){
System.out.println("Count is " + i);
try {
Thread.sleep(1000);} catch (InterruptedException e){}
}
}
}
so why do we use start()?