繁体   English   中英

C#对象继承

[英]C# Object Inheritance

我试图在c#中创建一个基类,我可以扩展到子类。

例如:

public class ObjectsInTheSky 
{
    public string Size, Shape;
    public float Mass;
    public int DistanceFromEarth;
    public bool hasAtmosphere, hasLife;
    public enum ObjectTypes {Planets,Stars,Moons}

    public ObjectsInTheSky( int id ) 
    {
        this.Load( id );
    }
    public void Load( int id) 
    {
        DataTable table = Get.DataTable.From.DataBase(id);

        System.Reflection.PropertyInfo[] propInfo = this.GetType().GetProperties();
        Type tp = this.GetType();
        foreach (System.Reflection.PropertyInfo info in propInfo)
        {
            PropertyInfo p = tp.GetProperty(info.Name);
            try
            {
                if (info.PropertyType.Name == "String")
                {
                    p.SetValue(this, table.Rows[0][info.Name].ToString(), null);
                }
                else if (info.PropertyType.Name == "DateTime")
                {
                    p.SetValue(this, (DateTime)table.Rows[0][info.Name], null);
                }
                else
                {
                    p.SetValue(this, Convert.ToInt32(table.Rows[0][info.Name]), null);
                }
            }
            catch (Exception e) 
            {
                Console.Write(e.ToString());
            }
        }
    }
}

public class Planets : ObjectsInTheSky 
{
    public Moons[] moons;
}

public class Moons : ObjectsInTheSky 
{

}

public class Stars : ObjectsInTheSky 
{
    public StarTypes type;
    public enum StarTypes {Binary,Pulsar,RedGiant}
}

我的问题是当我尝试使用一个对象时:

Stars star = new Stars(142);

star.type不存在和star的属性,它以star.star.type存在但完全无法访问,或者我无法弄清楚如何访问它。

我不知道我是否正确扩展了ObjectsInTheSky属性。 任何帮助或指示将不胜感激。

看起来好像您正在尝试使用未在子类Stars或基类上定义的构造函数。

Stars star = new Stars(142);

如果您尝试使用.Load(int)方法,则需要执行以下操作:

Stars star = new Stars();
star.Load(142);

或者,如果您尝试使用基础构造函数,则需要在子类中定义它:

public class Stars : ObjectsInTheSky 
{
    public Stars(int id) : base(id) // base class's constructor passing in the id value
    {
    }

    public Stars()  // in order to not break the code above
    {
    }

    public StarTypes type;
    public enum StarTypes {Binary,Pulsar,RedGiant}
}

C#中的构造函数不是继承的。 您需要为每个基类添加额外的构造函数重载:

public class Stars : ObjectsInTheSky 
{
    public Stars(int id) : base(id) { }

    public StarTypes type;
    public enum StarTypes {Binary,Pulsar,RedGiant}
}

这将创建一个构造函数,只为您调用基类的构造函数。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM