package demo5;
class Process extends Thread {
static int counter = 0;
public static synchronized void increment() { counter++; }
public void run() {
for (int i = 0; i < 1000000; i++)
{
increment();
}
System.out.println("Done.");
}
}
public class App {
public static void main(String[] args) throws InterruptedException {
Process p1 = new Process();
Process p2 = new Process();
p1.start();
p2.start();
p1.join();
p2.join();
System.out.println("Value of count is :" + p1.counter);
}
}
如果我将增量函数声明为非静态函数,则最后计数器的值不会是 200 万。
另一方面,当增量方法定义为静态时,它可以正常工作。
据我所知,所有 Process 对象只有一个增量函数..那么为什么我必须将其声明为静态方法..?
谢谢