Do static locks work across different children classes?

后端 未结 3 1307
轮回少年
轮回少年 2021-01-05 10:05

If I have

abstract class Parent
{
    static object staticLock = new object();

    public void Method1()
    {
        lock(staticLock)
        {
                   


        
相关标签:
3条回答
  • 2021-01-05 10:06

    Yes. A derived class does not get a new copy of the static data from the base class.

    However, this is not the case with generic classes. If you say:

    class Base<T>
    {
        protected static object sync = new object();
        ...
    }
    
    class Derived1 : Base<int> { ... }
    class Derived2 : Base<int> { ... }
    class Derived3 : Base<string> { ... }
    class Derived4 : Base<string> { ... }
    class Derived5 : Base<object> { ... }
    class Derived6 : Base<object> { ... }
    

    instances of Derived1 and Derived2 have the same sync object. Instances of Derived3 and Derived4 have the same sync object. Instances of Derived5 and Derived6 have the same sync object. But the three sync objects are all different objects.

    0 讨论(0)
  • 2021-01-05 10:21

    To add to ken2k's answer: [Yes] ... unless it's marked as [ThreadStatic] (which obviously isn't the case here).

    0 讨论(0)
  • 2021-01-05 10:27

    Yes, generally speaking, lock on static objects protect data for all instances of your class.

    From MSDN:

    Best practice is to define a private object to lock on, or a private static object variable to protect data common to all instances.

    0 讨论(0)
提交回复
热议问题