本帖最后由 ellisontu 于 2015-3-20 10:02 编辑
主题:黑马程序员--java实现多线程
继承 Thread 类,覆盖方法 run(),我们在创建的 Thread 类的子类中重写 run() ,加入线程所要执行的代码即可
- public class MyThread extends Thread
- {
- int count= 1, number;
- public MyThread(int num)
- {
- number = num;
- System.out.println
- ("创建线程 " + number);
- }
- public void run() {
- while(true) {
- System.out.println
- ("线程 " + number + ":计数 " + count);
- if(++count== 6) return;
- }
- }
- public static void main(String args[])
- {
- for(int i = 0;i 〈 5; i++) new MyThread(i+1).start();
- }
- }
复制代码
|
|