È che il monitor in Java non limita l'accesso alle variabili di istanza e solo ai metodi dichiarati sincronizzati o al codice nelle istruzioni sincronizzate?Il monitor java include variabili di istanza?
Ho creato due thread, thread y
invoca il metodo di sincronizzazione, che viene dichiarato sincronizzato mentre thread r
richiama il metodo unsync che non è dichiarato sincronizzato. Entrambi richiamano i metodi sull'oggetto condiviso s
.
Thread r
è in grado di modificare la variabile di istanza dell'oggetto s
mentre il monitor o il blocco di tale oggetto è ancora trattenuto dallo thread y
.
Il monitor in Java non limita l'accesso alle variabili di istanza e solo ai metodi dichiarati sincronizzati o al codice nelle istruzioni sincronizzate?
public class stuff {
private int a = 10;
public synchronized void sync() {
long t1 = System.currentTimeMillis();
System.out
.println("Okay, I am in sync method. I will be waiting for 10 seconds. Current Time = "
+ System.currentTimeMillis());
while (System.currentTimeMillis() - t1 < 10000);
System.out
.println("Okay, I have waited for 10 seconds. Current time is "
+ System.currentTimeMillis()
+ ".Now I will exit from sync method, a= " + this.a);
}
public void unsync() {
System.out
.println("Alright, I am in unsync method the currrent time is "
+ System.currentTimeMillis());
this.a = this.a + 1;
System.out.println("The time of exit from unsync method is "
+ System.currentTimeMillis());
}
}
class t1 extends Thread {
stuff s;
public t1(stuff s) {
this.s = s;
}
public void run() {
s.sync();
}
}
class t2 extends Thread {
stuff s;
public t2(stuff s) {
this.s = s;
}
public void run() {
s.unsync();
}
}
class m {
public static void main(String args[]) throws Exception {
stuff s = new stuff();
t1 y = new t1(s);
t2 r = new t2(s);
y.start();
Thread.sleep(2000);
r.start();
}
}
L'output del programma è qui sotto:
Okay, I am in sync method. I will be waiting for 10 seconds. Current Time = 1358801766310 Alright, I am in unsync method the currrent time is 1358801768343 The time of exit from unsync method is 1358801768343 Okay, I have waited for 10 seconds. Current time is 1358801776310.Now I will exit from sync method, a= 11