好的,所以这个问题已经解决了,但是所有的解决方案实际上只适用于简单的程序,我希望找到一种更有效的方法来做到这一点。所以让我们假设我有这个代码
public class Parent
{
int one;
int two;
public Parent(int A, int B)
{
one = A;
two = B;
}
}
public class Child : Parent
{
int three;
int four;
public Child(int C, int D)
{
three = C;
four = D;
}
}
好的,因此 Child 具有所有父变量以及所有新变量(它具有 int 1 和 2 以及 3 和 4)。当我创建一个子对象时
Child myChild = new Child(3,4);
我只能输入子构造函数中声明的两个值,我真的需要设置所有四个变量值(两个来自父级,两个来自子级)。我发现的唯一解决方案是
public class Child : Parent
{
int three;
int four;
public Child(int A, int B, int C, int D) : base(A, B)
{
three = C;
four = D;
}
}
但是我正在处理数十个子类和大约 30 个父变量,因此上面的解决方案变得非常大,对父变量所做的任何更改都必须在每个子类中手动更改。有没有一种简单的方法可以将父构造函数标记到子构造函数或其他比上面提出的更有效的解决方案上?