首頁 > 後端開發 > C#.Net教程 > C#中如何捕捉記憶體不足異常?

C#中如何捕捉記憶體不足異常?

PHPz
發布: 2023-09-05 16:09:07
轉載
1129 人瀏覽過

C#中如何捕捉記憶體不足異常?

當 CLR 無法分配所需的足夠記憶體時,會發生 System.OutOfMemoryException。

System.OutOfMemoryException 繼承自 System.SystemException 類別。

設定字串-

string StudentName = "Tom";
string StudentSubject = "Maths";
登入後複製

現在您需要使用分配的容量進行初始化,即初始值的長度-

StringBuilder sBuilder = new StringBuilder(StudentName.Length, StudentName.Length);
登入後複製

現在,如果您嘗試插入附加價值,則會發生異常。

sBuilder.Insert(value: StudentSubject, index: StudentName.Length - 1, count: 1);
登入後複製

出現以下例外-

System.OutOfMemoryException: Out of memory
登入後複製

要捕獲錯誤,請嘗試以下程式碼-

範例

 即時示範

using System;
using System.Text;

namespace Demo {
   class Program {
      static void Main(string[] args) {
         try {
            string StudentName = "Tom";
            string StudentSubject = "Maths";
            StringBuilder sBuilder = new StringBuilder(StudentName.Length, StudentName.Length);
            // Append initial value
            sBuilder.Append(StudentName);
            sBuilder.Insert(value: StudentSubject, index: StudentName.Length - 1, count: 1);
         } catch (System.OutOfMemoryException e) {
               Console.WriteLine("Error:");
               Console.WriteLine(e);
         }
      }
   }
}
登入後複製

上面處理OutOfMemoryException 並產生以下錯誤-

輸出

Error:
System.OutOfMemoryException: Out of memory
登入後複製

以上是C#中如何捕捉記憶體不足異常?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板