Java by API/java.lang/Runnable — различия между версиями

Материал из Java эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 17:43, 31 мая 2010

Runnable: run

/*
 * Output:
 *  run
 */
class caller implements Runnable {
  String msg;

  public caller(String s) {
    msg = s;
    new Thread(this).start();
  }
  public void run() {
    System.out.println("run");
  }
}
public class MainClass {
  public static void main(String args[]) {
    new caller("Hello");
  }
}