class MyThread extends Thread{
public void run(){
for(int x=0;x<1000;x++){
System.out.println("MyThead----"+x);
}
}
}
public class MoreThread {
public static void main(String[] args) {
MyThread myThread=new MyThread();
myThread.start();
for(int x=0;x<1000;x++){
System.out.println("main---"+x);
}
}
}
|
|