gpt4 book ai didi

c# - 同时使用 catch 和 finally 的 try-catch-finally 的用例

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:26:32 25 4
gpt4 key购买 nike

我了解 try-catch 的工作原理和 try-finally 的工作原理,但我发现自己(通常)在两种完全不同的场景中使用它们:

  • try-finally(或 C# 和 VB 中的 using)主要用于一些中等大小的代码块,这些代码块使用了一些需要正确处理的资源。
  • try-catch 最常用的是
    • 围绕可能以非常特定的方式失败的单个语句或
    • (作为包罗万象)在应用程序的非常高的级别,通常在某些用户界面操作的正下方。

根据我的经验,try-catch-finally 是合适的情况,即我想要捕获某些特定异常的 block 正是我在其中使用一些一次性资源的同一 block 非常罕见。然而,C# 的语言设计者, VBJava似乎认为这是一种非常普遍的情况; VB 设计师 even think about adding catch to using .

我错过了什么吗?还是我对 try-catch 的限制性使用过于迂腐?


编辑:澄清一下:我的代码通常看起来像这样(为清楚起见展开函数):

Try
do something
Aquire Resource (e.g. get DB connection)
Try
do something
Try
do something that can fail
Catch SomeException
handle expected error
do something else...
Finally
Close Resource (e.g. close DB connection)
do something
Catch all
handle unexpected errors

这似乎比将两个 catch 中的任何一个放在与 finally 相同的级别以避免缩进更有意义。

最佳答案

引自 MSDN

A common usage of catch and finally together is to obtain and use resources in a try block, deal with exceptional circumstances in a catch block, and release the resources in the finally block.

所以为了让它更清楚,想想你想要运行的代码,在 99% 的情况下它运行得很好但是在 block 中的某个地方可能会发生错误,你不知道在哪里和创建的资源很昂贵。

为了 100% 确定资源已被处理,您使用 finally block ,但是,您想要查明发生错误的那 1% 的情况,因此您可能需要设置登录捕捉部分。

这是一个非常常见的场景。

编辑 - 一个实际示例

这里有一些很好的例子:SQL Transactions with SqlTransaction Class .这只是使用 Try、Catch 和 Finally 的众多方法之一,它很好地演示了它,即使 using(var x = new SqlTranscation) 有时可能很有效。

就这样吧。

var connection = new SqlConnection();

var command = new SqlCommand();

var transaction = connection.BeginTransaction();

command.Connection = connection;
command.Transaction = transaction;

更有趣的部分来了

///
/// Try to drop a database
///
try
{
connection.Open();

command.CommandText = "drop database Nothwind";

command.ExecuteNonQuery();
}

所以让我们想象一下,由于某种原因上述失败并抛出异常

///
/// Due to insufficient priviligies we couldn't do it, an exception was thrown
///
catch(Exception ex)
{
transaction.Rollback();
}

事务将被回滚!请记住,您对 try/catch 中的对象所做的更改不会回滚,即使您将它嵌套在 using 中也不会!

///
/// Clean up the resources
///
finally
{

connection.Close();
transaction = null;
command = null;
connection = null;
}

现在资源已经清理干净了!

关于c# - 同时使用 catch 和 finally 的 try-catch-finally 的用例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2279769/

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