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

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

using System;using System.Collections;using System.Collections.Generic;using System.Net;using System.IO;using System.Text;using System.Drawing;using System.Text.RegularExpressions; namespace ConsoleApplication1{    class Program    {        static string GetHtml(string url)        {                            string html = string.Empty;            HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;            request.Timeout=20*1000;            HttpWebResponse response = request.GetResponse() as HttpWebResponse;            Stream s = response.GetResponseStream();            StreamReader sr = new StreamReader(s,Encoding.Default);            html = sr.ReadToEnd();            return html;        }        static void Main(string[] args)        {              try            {                Operation();                           }            catch (Exception ex)            {                 Console.WriteLine(ex.Message);            }            Console.ReadKey();        }         private static void Operation()        {            try            {                int numberA = Convert.ToInt32(Console.ReadLine());                int numberB = Convert.ToInt32(Console.ReadLine());                int result = numberA / numberB;                Console.WriteLine("结果:" + result);             }            catch (Exception ex)            {                throw;//注意如果写上throw说明将捕获到的异常再次抛给调用函数,如果不写,则说明异常已经默认处理            }        }                         }  }

转载于:https://www.cnblogs.com/ganquanfu2008/archive/2013/05/05/3061272.html

你可能感兴趣的文章
php学习笔记
查看>>
普通求素数和线性筛素数
查看>>
React Router 4.0 基本使用
查看>>
PHP截取中英文混合字符
查看>>
【洛谷P1816 忠诚】线段树
查看>>
CDN 学习笔记
查看>>
电子眼抓拍大解密
查看>>
多线程---线程间的通信
查看>>
poj 1331 Multiply
查看>>
严重: 文档无效: 找不到语法。 at (null:2:19)
查看>>
tomcat7的数据库连接池tomcatjdbc的25个优势
查看>>
Html 小插件5 百度搜索代码2
查看>>
nodejs-Path模块
查看>>
P1107 最大整数
查看>>
EasyDarwin开源手机直播方案:EasyPusher手机直播推送,EasyDarwin流媒体服务器,EasyPlayer手机播放器...
查看>>
监控CPU和内存的使用
查看>>
Ubuntu14.04设置开机自启动程序
查看>>
ios app 单元测试 自动化测试
查看>>
强连通tarjan模版
查看>>
javascript_09-数组
查看>>