Documentation
Examples
Tutorials
JAR files
Leaks
Errata
/ch3/sharedVariable/Controller.java
/ch3/sharedVariable/Controller.java
package ch3.sharedVariable; public class Controller extends ch3.sharedVariable.error.Controller { @Override public void incrementSharedVariable() { synchronized (this) { int temp = accessCount; temp++; System.out.println(temp); try { Thread.sleep(3000); } catch (java.lang.InterruptedException ie) { //Just keep going } accessCount = temp; } } }
Contact the author