Java by API/java.lang/Runnable — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 14:40, 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");
}
}