package com.chenxb.myThread;
public class TestJoin implements Runnable {
@Override
public void run() {
for (int i = 0; i < 1000; i++) {
System.out.println("thread" + i);
}
}
}
class MainJoin {
public static void main(String[] args) throws InterruptedException {
TestJoin testJoin = new TestJoin();
Thread thread = new Thread(testJoin);
thread.start();
//主线程
for (int i = 0; i < 1000; i++) {
System.out.println("main" + i);
if (i == 200) {
thread.join();
}
}
}
}
12-08
751
12-08
644