博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#异常处理
阅读量:5264 次
发布时间:2019-06-14

本文共 1779 字,大约阅读时间需要 5 分钟。

感觉看的书介绍得不深,没有JAVA和PYTHON讲的透彻。。

当是熟悉一下吧。

THOW,TRY,CATCH,FINALY都是这些关键字吧。

预定义类型,自定义类型,抛出异常传递。。。OK了。。

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6  7 namespace ConsoleApplication6 8 { 9     class Program10     {11         class test12         {13             public int myInt(string a, string b)14             {15                 int int1;16                 int int2;17                 int num;18                 try19                 {20                     int1 = int.Parse(a);21                     int2 = int.Parse(b);22                     if (int2 == 0)23                     {24                         throw new DivideByZeroException();25                     }26                     num = int1 / int2;27                     return num;28                 }29                 catch (DivideByZeroException de)30                 {31                     Console.WriteLine("用零除整数引发异常!");32                     Console.WriteLine(de.Message);33                     return 0;34                 }35             }36         }37 38         static void Main(string[] args)39         {40             try41             {42                 Console.WriteLine("请输入分子: ");43                 string str1 = Console.ReadLine();44                 Console.WriteLine("请输入分母: ");45                 string str2 = Console.ReadLine();46                 test tt = new test();47                 Console.WriteLine("分子除以分母的值: " + tt.myInt(str1, str2));48             }49             catch (FormatException)50             {51                 Console.WriteLine("请输入数值格式数据!");52             }53             Console.ReadLine();54         }55     }56 }

正常异常的输出截图:

转载于:https://www.cnblogs.com/aguncn/archive/2013/05/07/3065958.html

你可能感兴趣的文章
类和结构
查看>>
CSS3选择器(二)之属性选择器
查看>>
adidas crazylight 2018 performance analysis review
查看>>
typeset shell 用法
查看>>
python 之 循环语句
查看>>
心得25--JDK新特性9-泛型1-加深介绍
查看>>
[转]ceph网络通信模块_以monitor模块为例
查看>>
HDOJ 1754 I Hate It(线段树基本操作)
查看>>
latex tree
查看>>
安装NVIDIA驱动时禁用自带nouveau驱动
查看>>
HDU-1255 覆盖的面积 (扫描线)
查看>>
css3学习01
查看>>
【USACO】 奶牛会展
查看>>
ActiveMQ笔记之点对点队列(Point-to-Point)
查看>>
继承和多态
查看>>
Dijkstra+计算几何 POJ 2502 Subway
查看>>
修复IE不能执行JS的方法
查看>>
程序员究竟该如何提高效率zt
查看>>
希尔排序法(缩小增量法)
查看>>
PHP编程基础学习(一)——数据类型
查看>>