异常治疗的最佳实践

时间:2013-07-04 14:00:16

标签: c#

我想知道哪种方法是进行异常处理,因为在我的Try语句中,我有很多验证,如果我在那里得到一些Exception,我的{ {1}}语句可以告诉我发生了什么,但我怎么知道Catch出现在哪个字段?

示例代码

Exception

6 个答案:

答案 0 :(得分:3)

如果您不确定该值,请不要使用Convert.ToInt32。请改用Int32.TryParse:

int valor;
if (Int32.TryParse(xmlnode[i].ChildNodes.Item(2).InnerText.Trim(), out valor))
{
     // Worked! valor contains value
}
else
{
    // Not a valid Int32
}

此外,您不应该使用Exceptions来捕获验证错误。您的验证代码应该计算值是否正确,而不是在不正确时失败。验证类应该期望接收有效和无效数据作为输入。因为您期望无效输入,所以当它无效时,您不应该捕获异常。

进行测试,检查数据是否有效并返回true或false。几乎所有数字类型都有如上所述的TryParse方法。对于其他验证方法的自定义规则,提出了一个规范,该规范准确定义了有效和无效的输入,然后编写实现该规范的方法。

答案 1 :(得分:3)

将字符串转换为数字时,最佳做法是不要使用Try-Catch。因此,您应该使用TryParseint.TryParse方法。

// note that here is also a possible error-source
string valorToken = xmlnode[i].ChildNodes.Item(2).InnerText.Trim(); 
int valor;
if(!int.TryParse(valorToken, out valor))
{
    // log this
}
// else valor was parsed correctly

除此之外,如果您想提供确切的错误消息,您必须使用多个try-catch或处理不同的异常类型(最常见的Exception类型必须是最后一个)。

答案 2 :(得分:1)

在循环内移动 try..catch 。因此,您将知道哪个项目确实导致了异常

foreach(var xmlNode in nodes)
{
    try    
    {
       //
       int valor = Convert.ToInt32(xmlNode.ChildNodes.Item(2).InnerText.Trim());
       // A Lot of another validations here
    }
    catch(Exception e)
    {
       LogInformation(e.Message); // current item is xmlNode
       return;
    }
}

答案 3 :(得分:1)

如果甚至有可能无法解析您要解析的值的可能性,那么它就不是特殊情况。不应被视为例外。

在这种情况下,有TryParse,它允许您确定该值对于解析无效:

int valor;
if(int.TryParse(xmlnode[i].ChildNodes.Item(2).InnerText.Trim(), out valor))
{
  // "valor" is sucessfully parsed
}
else
{
  // invalid parse - do something with that knowledge
}

答案 4 :(得分:0)

除非创建不同的异常(即不同的类),否则你需要使用不同的尝试捕获来处理它。

通常你可以这样做:

try
{
   // If I get a Exception when converting to number, 
   // I will understand the error 
   // but how could I know where in my `Try` statement was the error ?
   int valor = Convert.ToInt32(xmlnode[i].ChildNodes.Item(2).InnerText.Trim());
   // A Lot of another validations here
}
Catch(IOException ioe) {
      // Handle, log
}
Catch(ArgumentNullException ane) {
      // Handle, log
}
Catch(Exception e)
{
      // Handle, log and potentially rethrow
}

您也可以尝试单独尝试(这是大多数人会想到的)或者在try块中嵌套尝试捕获:

喜欢

// First block
try {
  // Convert here once
} catch (Exception ex) { 
 // Handle and log
}

// Second block
try {
  // Convert here once
} catch (Exception ex) { 
 // Handle and log
}

不确定这是否有帮助。

答案 5 :(得分:0)

try
{
}
catch (Exception ex)
{
    var stackTrace = new StackTrace(ex, true);

    var frame = stackTrace.GetFrame(0);

    var line = frame.GetFileLineNumber();

    var method = frame.GetMethod();
}