题目: 利用多线程输出两个三角形,要求控制两个线程的发生,判断第一个线程是否结束。 并且在第一个线程没结束时,使用 sleep 方法或者 join 方法。
1、sleep 方法。
public class Main {
public static void main(String[] args) {
Test m = new Test();
Thread t1 = new Thread(m, "T1");
Thread t2 = new Thread(m, "T2");
t1.start();
while (t1.isAlive()) {
try {
Thread.sleep(100);
} catch (Exception e) {
}
}
t2.start();
}
}
class Test implements Runnable {
public void run() {
System.out.println(Thread.currentThread().getName());
for (int i = 1; i < 15; i++) {
for (int j = 0; j < i; j++) {
System.out.print('*');
}
System.out.println("");
}
}
}