Because something else could lock the classinstance, then you'd have a deadlock.
If you lock on the object you've created specifically for that purpose, you know you're in complete control, and nothing else is going to lock on it unexpectedly.
|
2 | class -> instance | ||
|
Because something else could lock the classinstance, then you'd have a deadlock. If you lock on the object you've created specifically for that purpose, you know you're in complete control, and nothing else is going to lock on it unexpectedly. |
||||
|
1 |
|
||
|
Because something else could lock the class, then you'd have a deadlock. If you lock on the object you've created specifically for that purpose, you know you're in complete control, and nothing else is going to lock on it unexpectedly. |
||||