home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / test / threads / MyThreadLauncher.java < prev    next >
Text File  |  1996-09-28  |  760b  |  34 lines

  1. class MyThread implements Runnable
  2. {
  3.    String name;
  4.    MyThread (String s)
  5.    {
  6.       System.out.println ("construct");
  7.       name = s;
  8.    }
  9.    public void start()
  10.    {
  11.       System.out.println ("Start called.");
  12.    }
  13.    public void run()
  14.    {
  15.       System.out.println ("MyThread.run() enter");
  16.       System.out.println (name);
  17.       System.out.println ("MyThread.run() exit");
  18.    }
  19. }
  20.  
  21. public class MyThreadLauncher
  22. {
  23.    public static void main (String args[])
  24.    {
  25.       System.out.println ("main start");
  26.       MyThread mt = new MyThread("this is the arg");
  27.       System.out.println ("object made");
  28.       Thread t = new Thread (mt, "MyThread");
  29.       System.out.println ("thread made");
  30.       t.start();
  31.       System.out.println ("Thread started");
  32.    }
  33. }
  34.