3

这是我的代码上的属性:

public KPage Padre
{
    get
    {
        if (k_oPagina.father != null)
        {
            this.Padre = new KPage((int)k_oPagina.father);
        }
        else
        {
            this.Padre = null;
        }

        return this.Padre;
    }
    set { }
}

但它说:

App_Code.rhj3qeaw.dll 中出现“System.StackOverflowException”类型的未处理异常

为什么?我该如何解决?

编辑

更正代码后,这是我的实际代码:

private KPage PadreInterno;
public KPage Padre
{
    get
    {
        if (PadreInterno == null)
        {
            if (paginaDB.father != null)
            {
                PadreInterno = new KPage((int)paginaDB.father);
            }
            else
            {
                PadreInterno= null;
            }
        }

        return PadreInterno;
    }
}

你有什么想法?

4

1 回答 1

7

该属性正在调用自身...通常属性调用基础字段:

   public KPage Padre
   {
       get
       {
           if (k_oPagina.father != null)
           {
               _padre = new KPage((int)k_oPagina.father);
           }
           else
           {
               _padre = null;
           }

           return _padre;
       }
       set { }
   }

   private KPage _padre;

您的旧代码递归调用getPadre属性,因此出现异常。

如果您的代码只“获取”并且不需要存储该值,您也可以完全摆脱支持字段:

   public KPage Padre
   {
       get
       {
           return k_oPagina.father != null
              ? new KPage((int)k_oPagina.father)
              : (KPage)null;
       }
   }

也就是说,我会把它放在一个方法中。

这也是你前几天问的问题:

发生“System.StackOverflowException”类型的未处理异常

于 2012-04-07T16:18:52.077 回答