• <i id='gSL7R'><tr id='gSL7R'><dt id='gSL7R'><q id='gSL7R'><span id='gSL7R'><b id='gSL7R'><form id='gSL7R'><ins id='gSL7R'></ins><ul id='gSL7R'></ul><sub id='gSL7R'></sub></form><legend id='gSL7R'></legend><bdo id='gSL7R'><pre id='gSL7R'><center id='gSL7R'></center></pre></bdo></b><th id='gSL7R'></th></span></q></dt></tr></i><div id='gSL7R'><tfoot id='gSL7R'></tfoot><dl id='gSL7R'><fieldset id='gSL7R'></fieldset></dl></div>

      • <bdo id='gSL7R'></bdo><ul id='gSL7R'></ul>

    1. <tfoot id='gSL7R'></tfoot>

      <small id='gSL7R'></small><noframes id='gSL7R'>

        <legend id='gSL7R'><style id='gSL7R'><dir id='gSL7R'><q id='gSL7R'></q></dir></style></legend>

      1. 在 C# 中定义 set 访问器时如何避免堆栈溢出错误

        How to avoid stack overflow errors when defining set accessor in C#(在 C# 中定义 set 访问器时如何避免堆栈溢出错误)

        <small id='P4VmV'></small><noframes id='P4VmV'>

          <bdo id='P4VmV'></bdo><ul id='P4VmV'></ul>
          <i id='P4VmV'><tr id='P4VmV'><dt id='P4VmV'><q id='P4VmV'><span id='P4VmV'><b id='P4VmV'><form id='P4VmV'><ins id='P4VmV'></ins><ul id='P4VmV'></ul><sub id='P4VmV'></sub></form><legend id='P4VmV'></legend><bdo id='P4VmV'><pre id='P4VmV'><center id='P4VmV'></center></pre></bdo></b><th id='P4VmV'></th></span></q></dt></tr></i><div id='P4VmV'><tfoot id='P4VmV'></tfoot><dl id='P4VmV'><fieldset id='P4VmV'></fieldset></dl></div>
        • <tfoot id='P4VmV'></tfoot>

                • <legend id='P4VmV'><style id='P4VmV'><dir id='P4VmV'><q id='P4VmV'></q></dir></style></legend>
                    <tbody id='P4VmV'></tbody>
                  本文介绍了在 C# 中定义 set 访问器时如何避免堆栈溢出错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  stackoverflow 的人.我是 c# 的新手,这是我第一次无法找到我的一个基本问题的答案.谁能帮帮我?!我正在尝试为公共实例字段定义集合逻辑.

                  People of stackoverflow. I am new to c# and this is the first time I have not been able to find an answer to one of my elementary questions. Who can help me?!I am trying to define set logic for a public instance field.

                  运行完美,

                  公共字符串标题{get;设置;}

                  public string Headline {get; set;}

                  这会导致堆栈溢出

                  公共字符串标题
                  {得到{返回标题;}放{标题=价值;}}

                  public string Headline
                  { get { return Headline; } set { Headline = value; } }

                  推荐答案

                  你在递归调用getter和setter(无限调用自己),不可避免地导致堆栈溢出.

                  You're calling the getter and setter recursively (calling themselves infinitely), inevitably causing a stack overflow.

                  这就是你的意思:

                  private string headline;
                  public string Headline
                  {
                      get { return headline; }
                      set { headline = value; }
                  }
                  

                  请注意,如果您不打算引入任何进一步的 get/set 逻辑,则这是不必要的,因为这正是您的第一个示例在幕后所做的.

                  Note that this is unnecessary if you don't plan to introduce any further get/set logic, as this is exactly what your first example does behind the scenes.

                  在学习 c# 中的属性时,最好不要将它们视为数据,而是将其视为具有以下签名的一对方法:

                  When learning about properties in c#, it helps to think of them not as data, but as a pair of methods with the following signatures:

                  public string get_Headline() { ... }
                  public void set_Headline(string value) { ... }
                  

                  事实上,这正是编译器定义它们的方式.

                  In fact, this is exactly how the compiler defines them.

                  现在很容易看出您的初始代码会递归调用 set_Headline.

                  Now it's easy to see that your initial code would call set_Headline recursively.

                  这篇关于在 C# 中定义 set 访问器时如何避免堆栈溢出错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Adding and removing users from Active Directory groups in .NET(在 .NET 中的 Active Directory 组中添加和删除用户)
                  set equality in linq(在 linq 中设置相等)
                  HashSet conversion to List(HashSet 转换为 List)
                  How to set timeout for webBrowser navigate event(如何为 webBrowser 导航事件设置超时)
                  Test whether two IEnumerablelt;Tgt; have the same values with the same frequencies(测试两个IEnumerablelt;Tgt;具有相同频率的相同值)
                  How do you determine if two HashSets are equal (by value, not by reference)?(您如何确定两个 HashSet 是否相等(按值,而不是按引用)?)
                    <tbody id='gVgOQ'></tbody>
                    <legend id='gVgOQ'><style id='gVgOQ'><dir id='gVgOQ'><q id='gVgOQ'></q></dir></style></legend>
                    1. <tfoot id='gVgOQ'></tfoot>

                      <i id='gVgOQ'><tr id='gVgOQ'><dt id='gVgOQ'><q id='gVgOQ'><span id='gVgOQ'><b id='gVgOQ'><form id='gVgOQ'><ins id='gVgOQ'></ins><ul id='gVgOQ'></ul><sub id='gVgOQ'></sub></form><legend id='gVgOQ'></legend><bdo id='gVgOQ'><pre id='gVgOQ'><center id='gVgOQ'></center></pre></bdo></b><th id='gVgOQ'></th></span></q></dt></tr></i><div id='gVgOQ'><tfoot id='gVgOQ'></tfoot><dl id='gVgOQ'><fieldset id='gVgOQ'></fieldset></dl></div>

                      <small id='gVgOQ'></small><noframes id='gVgOQ'>

                            <bdo id='gVgOQ'></bdo><ul id='gVgOQ'></ul>