先決條件:Exceptions in C++
標準 C++ 包含幾個內置異常類。最常用的是bad_alloc,如果嘗試使用new分配內存時發生錯誤,則會拋出該錯誤。
這個類是從異常派生的。
要使用bad_alloc,應該設置適當的 try 和 catch 塊。這是一個簡短的示例,展示了它的用法:
C++
// CPP code for bad_alloc
#include <iostream>
#include <new>
// Driver code
int main () {
try
{
int* gfg_array = new int[100000000];
}
catch (std::bad_alloc & ba)
{
std::cerr << "bad_alloc caught: " << ba.what();
}
return 0;
}
RunTime錯誤:
bad_alloc caught: std::bad_alloc
相關用法
- C++ basic_string c_str用法及代碼示例
- C++ basic_istream::readsome()用法及代碼示例
- C++ basic_istream::seekg()用法及代碼示例
- C++ basic_istream::swap()用法及代碼示例
- C++ basic_istream::unget()用法及代碼示例
- C++ basic_istream::get()用法及代碼示例
- C++ basic_istream::peek()用法及代碼示例
- C++ basic_istream::putback()用法及代碼示例
- C++ basic_istream::operator>>用法及代碼示例
- C++ bsearch()用法及代碼示例
- C++ btowc()用法及代碼示例
- C++ bitset flip()用法及代碼示例
- C++ bitset to_string()用法及代碼示例
- C++ bitset to_ullong()用法及代碼示例
- C++ bitset to_ulong()用法及代碼示例
- C++ bit_and用法及代碼示例
- C++ bitset any()用法及代碼示例
- C++ bitset reset()用法及代碼示例
- C++ bitset test()用法及代碼示例
- C++ bitset all()用法及代碼示例
- C++ bitset count()用法及代碼示例
- C++ bitset none()用法及代碼示例
- C++ bitset size()用法及代碼示例
- C++ bitset set()用法及代碼示例
- C++ bitset::flip()用法及代碼示例
注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 bad_alloc in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。