vote up 6 vote down star
1

Possible Duplicates:
Why is lock(this) {...} bad?


In C# it is common to use lock(objLock) where objLock is an object created simply for the purpose of locking.

Why is this preferable to lock(this)? What are the negative implications of lock(this) other than taking a lock out on the class itself?

flag

67% accept rate

closed as exact duplicate by Shog9, Lasse V. Karlsen, Lars Truijens, Marc Gravell May 21 at 12:09

2 Answers

vote up 12 vote down check

Because something else could lock the instance, 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.

link|flag
1  
Instance, not class. – Shog9 May 21 at 11:52
Sloppy of me. Duly edited. – Winston Smith May 21 at 11:58
vote up 0 vote down

If you lock anything public, then both the class and some other class can try to get a lock. It's easy enough to create a sync object, and always preferrable;

private syncLock = new Object();
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.