java多线程实例

public class ThreadTest {
public static void main(String[] args) {
MyThread1 thread1 = new MyThread1();
thread1.start();
MyThread2 thread2 = new MyThread2();
Thread th = new Thread(thread2);
th.start();
}
}
class MyThread1 extends Thread {
public void run() {
while (true) {
System.out.println("this is thread1.");
try {
Thread.sleep(500);
} catch (Exception e) {
}
}
}
}
class MyThread2 implements Runnable {
public void run() {
while (true) {
System.out.println("this is thread2.");
try {
Thread.sleep(500);
} catch (Exception e) {
}
}
}
}

posted @ 2014-11-28 17:18  feilv  阅读(135)  评论(0编辑  收藏  举报