COMP2396
Loading...
Searching...
No Matches
SharedNumber.java
Go to the documentation of this file.
1
2public class SharedNumber {
3 private int n;
4
5 public SharedNumber() {
6 this.n = 0;
7 }
8
9 public synchronized void up() {
10 n++;
11 }
12
13 public synchronized void down() {
14 n--;
15 }
16
17 public synchronized int getNumber() {
18 return n;
19 }
20}
synchronized int getNumber()
synchronized void up()
synchronized void down()