★★ Java の宿題ここで答えます Part 53 ★★

このエントリーをはてなブックマークに追加
707デフォルトの名無しさん
class ThreadX extends Thread {
String msg;
ThreadX(String x) {msg = x;}
public void run() {
for (int i=0; i<100; i++) {
System.out.print(msg);
}
}
}
public class ThreadDemo {
public static void main(String args[]) {
Thread th1 = new ThreadX("a");
Thread th2 = new ThreadX("b");
th1.start(); th2.start();
try {th1.join(); th2.join();}
catch (Exception e) {e.printStackTrace();}
}
}
の「aとbが混ざるまでの繰り返し回数を調べる」とはどういうことでしょうか?
実行するたびに実行結果が変わるのですが。