C#异常处理 try catch finally
程序员文章站
2022-03-11 15:48:30
在 C# 语言中异常与异常处理语句包括三种形式,即 try catch、try finally、try catch finally。在上述三种异常处理的形式中所用到关键字其含义如下:try:用于检查发生的异常,并帮助发送任何可能的异常。catch:以控制权更大的方式处理错误,可以有多个 catch 子句。finally:无论是否引发了异常,finally 的代码块都将被执行。public partial class tryCatchForm : Form{public tryCa.....
在 C# 语言中异常与异常处理语句包括三种形式,即 try catch、try finally、try catch finally。
在上述三种异常处理的形式中所用到关键字其含义如下:
- try:用于检查发生的异常,并帮助发送任何可能的异常。
- catch:以控制权更大的方式处理错误,可以有多个 catch 子句。
- finally:无论是否引发了异常,finally 的代码块都将被执行。
- public partial class tryCatchForm : Form
- {
- public tryCatchForm()
- {
- InitializeComponent();
- }
- //“确认”按钮单击事件
- private void button1_Click(object sender, EventArgs e)
- {
- //获取文本框中的值
- string str = textBox1.Text;
- //将字符串装换为整数
- try
- {
- int num = int.Parse(str);
- MessageBox.Show("您输入的数字是:" + num);
- }
- catch (Exception ex)
- {
- MessageBox.Show(ex.Message);
- }
- }
- }
本文地址:https://blog.csdn.net/qq_39956202/article/details/107914692