System.OutOfMemoryException은 CLR이 필요한 충분한 메모리를 할당할 수 없을 때 발생합니다.
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!