homeduke Prof. Dr. Uwe Schmidt FH Wedel

Die Datei: SimpleThreadTest1.java


weiter
   1/**
   2  * ein Test fuer SimpleThread
   3  */
   4
   5//--------------------
   6
   7public
   8class SimpleThreadTest1 {
   9
  10  public static
  11  void main(String[] argv) {
  12
  13    Thread [] threads =
  14      new Thread[argv.length];
  15
  16    for (int i = 0;
  17         i < threads.length;
  18         ++i) {
  19
  20      threads[i] =
  21        new SimpleThread(argv[i]);
  22
  23      threads[i].start();
  24    }
  25  }
  26}
  27
  28//--------------------
  29

Die Quelle: SimpleThreadTest1.java


Letzte Änderung: 29.04.2013
© Prof. Dr. Uwe Schmidt
Prof. Dr. Uwe Schmidt FH Wedel