源程序:
package org.xjj.demo.threaddemo ;
public class MyThread extends Thread{
private String name ;
public MyThread(String name){
this.name = name ;
}
public void run(){
for(int i = 0 ; i < 10 ; i++){
System.out.println(name + "运行,i = " + i) ;
}
}
}
import org.xjj.demo.threaddemo.MyThread ;
public class Test{
public static void main(String[] args){
MyThread mt1 = new MyThread("线程A ") ;
MyThread mt2 = new MyThread("线程B ") ;
mt1.start() ;
mt2.start() ;
}
}
运行结果: