码迷,mamicode.com
首页 > 编程语言 > 详细

java多线程实例

时间:2014-11-28 17:58:53      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:io   ar   java   on   art   ad   as   new   class   

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) {
}
}
}
}

java多线程实例

标签:io   ar   java   on   art   ad   as   new   class   

原文地址:http://www.cnblogs.com/feilv/p/4129026.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!