C# Exception整理…

來源:互聯網
上載者:User
1, 整體模式

PS:以上所有異常都在system命名空間裡,除了IOException及其派生Excpetion在system.IO內
可以看出異常主要分為2類,SystemException和ApplictaionException
SystemException:通常有.Net運行庫產生
ApplictaionException:是使用者定義異常的基類,可用於定義應用程式一些專屬的異常

2, SystemException
大部分都可以由其名字猜出作用
StackOverflowException:這樣的異常往往發生在遞迴以及死迴圈,造成分配給堆棧的記憶體地區已滿,這種情況下甚至不會執行finally地區。
OverflowException:比如checked環境下要把-40的int轉換為uint資料, 其基類即為計算異常基類。
其他的看單詞基本就能猜到了

3,ApplicationException

public class PageCannotFindException : ApplicationException{public PageCannotFindException(string pageName): base("Cannot find page: " + pageName){}public PageCannotFindException(string pageName, Exception innerException): base("Cannot find page: " + pageName, innerException){}}上面是一個簡單的使用者異常類

而是用的時候也是基本跟預定義的一樣
捕獲:

try{...}Catch(PageCannotFindException  ex){...}

拋出:

Catch(Exception ex){throw new PageCannotFindException(pageName, ex);}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.