blob: 2c1683689eb43a791c2e49a763c46dbb588190e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
class SynchronizedPlain1 {
private final Object $lock = new Object[0];
void test() {
synchronized ($lock) {
System.out.println("one");
}
}
void test2() {
synchronized ($lock) {
System.out.println("two");
}
}
}
class SynchronizedPlain2 {
private static final Object $LOCK = new Object[0];
static void test() {
synchronized ($LOCK) {
System.out.println("three");
}
}
static void test2() {
synchronized ($LOCK) {
System.out.println("four");
}
}
}
|