标题: 开启两个线程每隔一段时间分别向一个共享数组中添加元素,每个线程添加3个即可 [打印本页] 作者: cuisq 时间: 2016-6-14 08:02 标题: 开启两个线程每隔一段时间分别向一个共享数组中添加元素,每个线程添加3个即可 public class D10多线程_共享数组添加3 {
public static void main(String[] args) {
new myth().start();
new myth().start();
}
}
class myth extends Thread {
static int i = 0; //必须是静态的,要不然,每个对象就自建一个
static int[] arr = new int[6];
public void run() {
while (true) {
synchronized (myth.class) {
if (i >= 6) {
break;
}