ThreadsDemo3public class ThreadsDemo3 extends Object Threaded demo application, using inner class as Runnable. |
Fields Summary |
---|
String | mesg | Thread | t | int | count |
Constructors Summary |
---|
public ThreadsDemo3(String m, int n)Construct a ThreadDemo object
count = n;
mesg = m;
t = new Thread(new Runnable() {
public void run() {
while (count-- > 0) {
println(mesg);
try {
Thread.sleep(100); // 100 msec
} catch (InterruptedException e) {
return;
}
}
println(mesg + " thread all done.");
}
});
t.setName(m + " runner Thread");
t.start();
|
Methods Summary |
---|
public static void | main(java.lang.String[] argv)Main program, test driver for ThreadsDemo3 class.
new ThreadsDemo3("Hello from X", 10);
new ThreadsDemo3("Hello from Y", 15);
| void | println(java.lang.String s)
System.out.println(s);
|
|