C bad alloc類的使用例項

2021-10-04 07:34:02 字數 517 閱讀 8095

1. bad_alloc類存在於#include標頭檔案中;不過一般使用者使用時無需要包含標頭檔案,執行也沒問題,不知**間接的包含進行去了,未深入去研究這個問題,有知道的可以告知我一下,謝謝!

2. 例子(在vs2015上執行過)

#include

using namespace std;

int main() 

cout << "hello wrold 1 !!!" << endl;//異常後這句話應該不會執行到,說明cpu的使用權交給了異常處理函式

}catch (float fex)

catch (int iex)

catch (bad_alloc &be)

cout << "new is fail 111" << endl;

cout << "new is fail 111" << endl;

cout << "new is fail 111" << endl;

}cout<<"hello world 2 !!!"

Python 使用類和例項

class car 模擬汽車 def init self,name,model,year 初始化汽車的屬性 self.name name self.model model self.year year defget describe car self 返回描述性資訊 long name str se...

enum列舉類使用例項

package com.elk.wsl.enums author 胖子不胖 description 使用與碼值的轉換 date created in 21 26 2019 2 18 modified by public enum color public string getenglish publ...

Python 使用類和例項

class car 模擬汽車 def init self,name,model,year 初始化汽車的屬性 self.name name self.model model self.year year defget describe car self 返回描述性資訊 long name str se...