标签:一个 stat str rri 覆盖 实例 定义 com print
步骤
定义一个Thread子类;
覆盖run方法(线程执行事件方法);
创建该线程的一个实例:Thread t=new MyThread(http://www.amjmh.com/v/BIBRGZ_558768/);
启动线程t1.start;
实例:
public class Main3 extends Thread{
int a;
Main3(int a) {
this.a=a;
}
@Override
public void run() {
super.run();
while (true) System.out.println(a);
}
public static void main(String[] args) {
Thread t=new Main3(1);
t.start();
Thread t1=new Main3(2);
t1.start();
}
}
---------------------
标签:一个 stat str rri 覆盖 实例 定义 com print
原文地址:https://www.cnblogs.com/liyanyan665/p/11359756.html