I have an object (Person) with a single member field (String name). The only methods available in this are get and set. Now this should be implemented such that
Now it is the last requirement which is making life confusing. Synchronising the whole get method would mean only one thread would be able to access it at a time. All that I can make out is get and set would need to share the same lock to meet the second condition.
Directions please!
This is what I have so far:
Obviously the synchronised block in get is not going to help
- two threads cannot invoke set simultaneously
- while one thread invokes set, another cannot invoke get
- two or more threads should be able to invoke get simultaneously
Now it is the last requirement which is making life confusing. Synchronising the whole get method would mean only one thread would be able to access it at a time. All that I can make out is get and set would need to share the same lock to meet the second condition.
Directions please!

This is what I have so far:
Code:
public class Person
{
private String name;
private final Object myLock = new Object();
public String get() {
synchronized (myLock) {
return this.name;
}
}
public void setString (String in) {
synchronized (myLock) {
this.name = in;
}
}
}
Obviously the synchronised block in get is not going to help