为什么我在Class属性上得到这个“无限循环”?

时间:2012-04-07 16:18:01

标签: c# .net properties stack-overflow

这是我的代码中的属性:

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;
    }
}

你怎么看?

1 个答案:

答案 0 :(得分: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;

您的旧代码以递归方式调用get属性的Padre,因此异常。

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

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

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

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

An unhandled exception of type 'System.StackOverflowException' occurred