mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-25 20:01:38 +00:00
21 lines
338 B
Plaintext
21 lines
338 B
Plaintext
import lombok.Synchronized;
|
|
|
|
public class SynchronizedExample {
|
|
private final Object readLock = new Object();
|
|
|
|
@Synchronized
|
|
public static void hello() {
|
|
System.out.println("world");
|
|
}
|
|
|
|
@Synchronized
|
|
public int answerToLife() {
|
|
return 42;
|
|
}
|
|
|
|
@Synchronized("readLock")
|
|
public void foo() {
|
|
System.out.println("bar");
|
|
}
|
|
}
|