c#中嵌套类的继承

本文关键字:继承 嵌套 | 更新日期: 2023-09-27 18:09:39

美丽代码的粉丝。

我想用两种方式问我的问题。也许理解我对你会有帮助。

1)有2类代码。其中一个是嵌套的。嵌套类用于访问其他类的私有字段。我想继承类B:A{类BUnit:AUnit{}},它具有相同的功能,但在B和BUnits类中有更多的方法和字段。怎样才能做到呢?

class Program
{
    static void Main(string[] args)
    {
        A a = new A();
        a.Add();
        a.Add();
        a.Add();
        bool res=a[0].Rename("1");//res=true;
        res = a[1].Rename("1");//res= false;
        Console.ReadKey();
    }
}
class A
{
    private List<AUnit> AUnits;
    public AUnit this[int index] {get {return AUnits[index];}}
    public A()//ctor
    {
        AUnits = new List<AUnit>();
    }
    public void Add()
    {
        this.AUnits.Add(new AUnit(this));
    }
    public class AUnit
    {
        private string NamePr;
        private A Container;
        public AUnit(A container)//ctor 
        {
            NamePr = "Default";
            this.Container = container;
        }
        public string Name { get { return this.NamePr; } }
        public Boolean Rename(String newName)
        {
            Boolean res = true;
            foreach (AUnit unt in this.Container.AUnits)
            {
                if (unt.Name == newName) res = false;
            }
            if (res) this.NamePr = String.Copy(newName);
            return res;
        }
    }
}

2)有两个非常相似的"东西"——A类和b类。是否有可能将它们的共同部分分开,然后从中"继承"这两个"东西"?例如,我想添加一些方法,如GetUnitsCount()或RemoveUnit(),这个方法是常见的。所以我应该"复制粘贴"这个方法到A和B,但这不是一个好主意。最好是在一个地方一次性改变他们的共同部分。如何实现并不重要——继承、接口或其他。重要——怎么重要?

 class Program
 {
    static void Main(string[] args)
    {
        A a = new A();
        a.Add();
        a[0].objB.Add();
        a[0].objB.Add();
        a[0].objB[0].Val1 = 1;
        int res = a[0].objB[0].Val1 + a[0].objB[0].Val2;
        Console.ReadKey();
    }
}
class A
{
    private List<AUnit> Units;
    public AUnit this[int index] {get {return Units[index];}}
    public A()//ctor
    {
        Units = new List<AUnit>();
    }
    public void Add()
    {
        this.Units.Add(new AUnit(this));
    }
    public class AUnit
    {
        private string NamePr;
        private A Container;
        public B objB;
        public AUnit(A container)//ctor 
        {
            NamePr = "Default";
            this.Container = container;
            this.objB = new B();
        }
        public string Name { get { return this.NamePr; } }
        public Boolean Rename(String newName)
        {
            Boolean res = true;
            foreach (AUnit unt in this.Container.Units)
            {
                if (unt.Name == newName) res = false;
            }
            if (res) this.NamePr = String.Copy(newName);
            return res;
        }
    }
}

class B
{
    private List<BUnit> Units;
    public BUnit this[int index] { get { return Units[index]; } }
    public B()//ctor
    {
        Units = new List<BUnit>();
    }
    public void Add()
    {
        this.Units.Add(new BUnit(this));
    }
    public class BUnit
    {
        private string NamePr;
        private B Container;
        public int Val1{get;set;}
        public int Val2{get;set;}
        public BUnit(B container)//ctor 
        {
            NamePr = "Default";
            this.Container = container;
            this.Val1 = 10;
            this.Val2 = 17;
        }
        public string Name { get { return this.NamePr; } }
        public Boolean Rename(String newName)
        {
            Boolean res = true;
            foreach (BUnit unt in this.Container.Units)
            {
                if (unt.Name == newName) res = false;
            }
            if (res) this.NamePr = String.Copy(newName);
            return res;
        }
    }
}

感谢您的关注。

c#中嵌套类的继承

要回答您的第一个问题,您需要做的唯一事情是让BUnit继承AUnit限定 AUnit:

public class BUnit : A.AUnit
{
    ....
}

从那里,我相信你的问题是关于基本继承,它的工作没有不同的嵌套类。嵌套类纯粹是为了组织——当你继承"包含"类时,它们不会被继承。