mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-05-13 23:02:12 +02:00
21 lines
204 B
Java
21 lines
204 B
Java
|
|
|
|
|
|
|
|
class JavaThreadingSync {
|
|
|
|
public synchronized void sync_method() {
|
|
System.out.println("mutex");
|
|
}
|
|
|
|
public void sync_scope() {
|
|
|
|
synchronized (this) {
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
} |