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
/
ttest.java
< prev
Wrap
Text File
|
1996-09-28
|
379b
|
26 lines
import java.util.*;
public class ttest {
public static void main(String args[]) {
TestThread t1 = new TestThread();
TestThread t2 = new TestThread();
t2.start();
t1.start();
}
}
class TestThread extends Thread {
int cnt = 0;
TestThread() {
}
public void run() {
while (1 == 1) {
System.err.println("run "+cnt);
cnt++;
}
}
}