thomian

Well-known member
  • May 20, 2011
    12,041
    16,794
    113
    Me code eke awula mokakda ban...?

    popup.html
    ipE5JAV.jpg


    class ThredDemo extends Thread {

    public void Run(){

    for (int i=0;i<=10;i++){

    System.out.println("Value is "+i);

    }

    }

    }




    public class ThreadMain {

    public static void main(String[] args) {
    ThredDemo td1 = new ThredDemo();
    td1.start();
    ThredDemo td2 = new ThredDemo();
    td2.start();


    }

    }​