當 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中文網其他相關文章!