gpt4 book ai didi

C# 对象继承

转载 作者:行者123 更新时间:2023-11-30 13:59:02 25 4
gpt4 key购买 nike

我正在尝试在 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# 对象继承,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14443933/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com