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

    2. <legend id='jGk45'><style id='jGk45'><dir id='jGk45'><q id='jGk45'></q></dir></style></legend>
    3. <small id='jGk45'></small><noframes id='jGk45'>

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

        有没有标准的“永不退货"?C# 函数的属性?

        Is there a standard quot;never returnsquot; attribute for C# functions?(有没有标准的“永不退货?C# 函数的属性?)
          <tbody id='AktAq'></tbody>
        <legend id='AktAq'><style id='AktAq'><dir id='AktAq'><q id='AktAq'></q></dir></style></legend>
          <tfoot id='AktAq'></tfoot>

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

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

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

                  本文介绍了有没有标准的“永不退货"?C# 函数的属性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一种方法如下所示:

                  I have one method that looks like this:

                  void throwException(string msg)
                  {
                      throw new MyException(msg);
                  }
                  

                  现在如果我写

                  int foo(int x, y)
                  {
                      if (y == 0)
                          throwException("Doh!");
                      else
                          return x/y;
                  }
                  

                  编译器会抱怨 foo 并非所有路径都返回值".

                  the compiler will complain about foo that "not all paths return a value".

                  有没有我可以添加到 throwException 的属性来避免这种情况?比如:

                  Is there an attribute I can add to throwException to avoid that ? Something like:

                  [NeverReturns]
                  void throwException(string msg)
                  {
                      throw new MyException(msg);
                  }
                  

                  恐怕自定义属性不行,因为我需要编译器的配合.

                  I'm afraid custom attributes won't do, because for my purpose I'd need the cooperation of the compiler.

                  推荐答案

                  没有.我建议您更改第一个函数的签名以返回异常而不是抛出异常,并将 throw 语句保留在第二个函数中.这会让编译器满意,而且气味也不会那么难闻.

                  No. I suggest you change the signature of your first function to return the exception rather than throw it, and leave the throw statement in your second function. That'll keep the compiler happy, and smells less bad as well.

                  这篇关于有没有标准的“永不退货"?C# 函数的属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  Performance overhead of using attributes in .NET(在 .NET 中使用属性的性能开销)
                  Accessing attribute info from DTE(从 DTE 访问属性信息)
                  c# Hide a property in datagridview with datasource(c#使用数据源隐藏datagridview中的属性)
                  Extract Display name and description Attribute from within a HTML helper(从 HTML 帮助器中提取显示名称和描述属性)
                  How can I force the PropertyGrid to show a custom dialog for a specific property?(如何强制 PropertyGrid 显示特定属性的自定义对话框?)
                  Associate attribute with code generated property in .net(将属性与 .net 中的代码生成属性相关联)
                    <tbody id='8htQd'></tbody>
                  <i id='8htQd'><tr id='8htQd'><dt id='8htQd'><q id='8htQd'><span id='8htQd'><b id='8htQd'><form id='8htQd'><ins id='8htQd'></ins><ul id='8htQd'></ul><sub id='8htQd'></sub></form><legend id='8htQd'></legend><bdo id='8htQd'><pre id='8htQd'><center id='8htQd'></center></pre></bdo></b><th id='8htQd'></th></span></q></dt></tr></i><div id='8htQd'><tfoot id='8htQd'></tfoot><dl id='8htQd'><fieldset id='8htQd'></fieldset></dl></div>

                    1. <legend id='8htQd'><style id='8htQd'><dir id='8htQd'><q id='8htQd'></q></dir></style></legend>

                      • <bdo id='8htQd'></bdo><ul id='8htQd'></ul>

                          <small id='8htQd'></small><noframes id='8htQd'>

                            <tfoot id='8htQd'></tfoot>