Create multiple threads. : Create Thread « Thread « Java Tutorial






class NewThread implements Runnable {
  String name; // name of thread

  Thread t;

  NewThread(String threadname) {
    name = threadname;
    t = new Thread(this, name);
    System.out.println("New thread: " + t);
    t.start(); // Start the thread
  }

  public void run() {
    try {
      for (int i = 5; i > 0; i--) {
        System.out.println(name + ": " + i);
        Thread.sleep(1000);
      }
    } catch (InterruptedException e) {
      System.out.println(name + "Interrupted");
    }
    System.out.println(name + " exiting.");
  }
}

class MultiThreadDemo {
  public static void main(String args[]) {
    new NewThread("One"); // start threads
    new NewThread("Two");
    new NewThread("Three");

    try {
      Thread.sleep(10000);
    } catch (InterruptedException e) {
      System.out.println("Main thread Interrupted");
    }

    System.out.println("Main thread exiting.");
  }
}








10.1.Create Thread
10.1.1.Creating a Thread
10.1.2.Creating Thread: Deriving a Subclass of Thread
10.1.3.Creating Thread Objects: Implementing the run() Method in Runnable interface
10.1.4.Create a second thread.
10.1.5.Create a second thread by extending Thread
10.1.6.Create multiple threads.