C++ new 和異常

gaopengtttt發表於2016-08-08
new異常,在分配記憶體的時候如果失敗我們可以使用bad_alloc類來完成他在new標頭檔案中,
他是從exception類共有派生而來,當無法分配記憶體給予new一個空指標,使用bad_alloc的
what()來返回輸出
異常如下
#includ<iostream>
#include<new>      //必須包含
#include<cstdlib>
using namespace std;


class test
{
        public:
                double a[20000];
                ~test(void){cout<<"test"<<endl;}
};


int main(void)
{
        test *pd;
        try
        {
                cout<<"Will give big mem?!"<<endl;
                pd = new test[10000000];
        }
        catch (bad_alloc &ba)
        {
                cout<<"exception!\n";
                cout<<ba.what()<<endl;
                exit(EXIT_FAILURE);
        }
        cout<<"mem success\n";
        delete [] pd;
}


返回如下:
gaopeng@bogon:~/CPLUSPLUS/part15$ ./a.out 
Will give big mem?!
exception!
std::bad_alloc


另外在gcc中我們也可以這樣用使用std::nothrow讓分配記憶體失敗返回一個空指標
#include<iostream>
#include<new>
#include<cstdlib>
using namespace std;




class test
{
        public:
                double a[20000];
                ~test(void){cout<<"test"<<endl;}
};




int main(void)
{
        test *pd;
        pd = new (std::nothrow)test[10000000];
        if(pd == 0)
        {
                cout<<"no mem give!!"<<endl;
                exit(EXIT_FAILURE);
        }
}


更加簡潔

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7728585/viewspace-2123136/,如需轉載,請註明出處,否則將追究法律責任。

相關文章