C#--使用Finally

本文通过示例展示了C#中使用try..catch..Finally进行异常处理的方法,包括如何在try块中执行可能抛出异常的代码,catch块捕获并处理异常,以及finally块确保执行必要的清理操作。

C#中可以用try..catch..Finally进行异常处理,try后面跟要执行的语句,catch为如有异常,对异常进行处理,Finally做清理工作,这部分必须执行,如下示例:

1 /*
2 Example13_1.cs illustrates a try, catch, and finally block
3  */
4
5 using System;
6
7 class Example13_1
8 {
9
10 public static void Main()
11 {
12
13 try
14 {
15
16 // code that throws an exception
17 int zero = 0;
18 Console.WriteLine("In try block: attempting division by zero");
19 int myInt = 1 / zero; // throws the exception
20 Console.WriteLine("You never see this message!");
21
22 }
23 catch
24 {
25
26 // code that handles the exception
27 Console.WriteLine("In catch block: an exception was thrown");
28
29 }
30 finally
31 {
32
33 // code that does any cleaning up
34 Console.WriteLine("In finally block: do any cleaning up here");
35
36 }
37
38 }
39
40 }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值