Is there a standard quot;never returnsquot; attribute for C# functions?(有没有标准的“永不退货?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# 函数的属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有没有标准的“永不退货"?C# 函数的属性?
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 使用 rss + c# 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01