I'm studying Threads in Java, and it make me curious about how to control synchronize access between static and instance methods of class, since synchronization of static methods in a class is independent from the synchronization of instance methods on objects of the class.
At the moment, I can't find any situation in real life, so I make a assumption :
Two class A and B, class A have static methods with a formal parameter of class B, and instance methods do too. Then I create two threads to execute concurrently two methods of A.
How many ways to keep the state of the below obj is always consistent ?
class B { ... }
class A {
public synchronized void instanceMethod(B obj){ ... };
public static synchronized void staticMethod(B obj){ ... };
public static void main(String[] args){
B obj = new B();
// create a Thread to modify the state of obj with A's instanceMethod
// create a Thread to modify the state of obj with A's staticMethod
}
}
Thanks in advanced.