show/hide this revision's text 2 added 57 characters in body

Because if people can get at your object instance (ie: your this) pointer, then they can also try to lock that same object. Now they might not be aware that you're locking on this internally, so this may cause problems (possibly a deadlock)

In addition to this, it's also bad practice, because it's locking "too much"

For example, you might have a member variable of List<int>, and the only thing you actually need to lock is that member variable. If you lock the entire object in your functions, then it other things which call those functions will prevent them being called, even if be blocked waiting for the lock. If those functions don't need to access the member list, so you'll cause be causing other code to wait and slow down your application for no reason at all.

show/hide this revision's text 1

Because if people can get at your object instance (ie: your this) pointer, then they can also try to lock that same object. Now they might not be aware that you're locking on this internally, so this may cause problems (possibly a deadlock)

In addition to this, it's also bad practice, because it's locking "too much"

For example, you might have a member variable of List<int>, and the only thing you actually need to lock is that member variable. If you lock the entire object in your functions, then it will prevent them being called, even if those functions don't need to access the member list, so you'll cause other code to wait and slow down for no reason at all.

    Post Made Community Wiki by Community