1

我可以这样定义构造函数吗?附加问题:我可以在自己的构造函数中调用类的构造函数吗?

class SubArray
{
    List<int> array;
    string parent;
    string name;
    SubArray child;

    public SubArray(SubArray child, string name)
    {
        this.child = child;
        List<int> array = new List<int>();
        this.name = name;
    }
}
4

2 回答 2

12

对此没有限制,但就像任何递归一样 - 它需要一个停止条件。否则会导致堆栈溢出(PUN 意图:))。

于 2013-02-13T13:17:47.547 回答
4

我想你可以做这样的事情并且没有......明显的问题:

public SubArray(SubArray child, string name)
{
    this.child = child;
    this.array = new List<int>();
    this.name = name;

    if (child != null && child.child != null)
    {
        this.child.child = new SubArray(child.child,name);
    }
}
于 2013-02-13T13:18:36.810 回答