gpt4 book ai didi

c# - 关于 throw helpers 的思考

转载 作者:太空狗 更新时间:2023-10-29 21:34:06 25 4
gpt4 key购买 nike

为了减少冗余代码,我有一些 throw 辅助方法:

protected static X ThrowInvalidOperation(string operation, X a, X b) {
throw new InvalidOperationException("Invalid operation: " + a.type.ToString() + " " + operation + " " + b.type.ToString());
}

用法:

    public static X operator +(X a, X b) {
if (...) {
return new X(...);
}
return ThrowInvalidOperation("+", a, b);
}

问题:因为运算符+ 必须始终返回一个值,所以我通过让ThrowInvalidOperation 返回一个值并用< 调用它来解决这个问题strong>returnThrowInvalidOperation("+", a, b);

有很多缺点 - 一个是因为我不能从返回不同类型的方法中调用它。
我希望有一种方法可以将辅助函数标记为“始终抛出异常”,以便编译器停止跟踪返回值。

问:我有什么可能使这项工作成功?

最佳答案

异常(exception)情况:

protected static Exception MakeInvalidOperation(string operation, X a, X b)
{
return new InvalidOperationException(
"Invalid operation: " + a.type + " " + operation + " " + b.type);
}

然后扔掉它:

throw MakeInvalidOperation("+", a, b);

你是好伙伴:

// Type: Microsoft.Internal.Web.Utils.ExceptionHelper
// Assembly: WebMatrix.Data, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
// MVID: 3F332B40-45DB-42E2-A4ED-0826DE223A79
// Assembly location: C:\Windows\Microsoft.NET\assembly\GAC_MSIL\WebMatrix.Data\v4.0_1.0.0.0__31bf3856ad364e35\WebMatrix.Data.dll

using System;

namespace Microsoft.Internal.Web.Utils
{
internal static class ExceptionHelper
{
internal static ArgumentException CreateArgumentNullOrEmptyException(string paramName)
{
return new ArgumentException(CommonResources.Argument_Cannot_Be_Null_Or_Empty, paramName);
}
}
}

尽管编写您自己的基于 Exception 的自定义类型(或基于 InvalidOperationException 的类型)并定义一些为您格式化消息的构造函数并不是那么多代码。

To reduce redundant code

当我听到这个,我想AOP PostSharp 很好地实现了这一点。如果您有大量冗余代码,您应该考虑 AOP,但请记住,这可能有点矫枉过正。

关于c# - 关于 throw helpers 的思考,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20190751/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com