C#:make派生对象有条件地共享相同的基础对象

时间:2016-09-28 15:26:03

标签: c# oop multiple-inheritance

我有一个基类,由多个派生类继承。我正在构造函数初始化基类的一些属性。有什么办法可以让我的派生对象共享基类属性,而不是为每个派生类对象创建相同的属性值。这非常重要,因为一些基类属性值是由服务生成的,共享这可以提高性能。 以下是我想说的一个简单的蓝图:

public class ClassA
{
    //i dont want to use static here as it will be shared for multiple codes
    protected string country { get; set; }
    public ClassA(string code)
    {
        country = CallsomeService(code);
    }
}

public class ClassB : ClassA
{
    public ClassB(string code) : base(code)
    {
        //blah blah
    }

    public void DomeSomethingWithCountry()
    {
        Console.WriteLine($"doing this with {country} in classB");
    }
}

public class ClassC : ClassA
{
    public ClassC(string code) : base(code)
    {
        //blah blah
    }

    public void DomeSomethingWithCountry()
    {
        Console.WriteLine($"doing soemthing else with {country} in classC");
    }
}

现在制作下面的对象

     public void test()
        {
            //call service for this
            var classb=new ClassB("1");
            //dont call service for this
            var classc=new ClassC("1");
classb.DomeSomethingWithCountry();
classc.DomeSomethingWithCountry();
            //call service for this as code is different
            var classb1=new ClassB("2");
        }

1 个答案:

答案 0 :(得分:6)

您可以存储静态调用的结果,而不是值本身。

panel_b

这绝不是线程安全的,但应该给你一些起点。