真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C++異常拋出以及捕獲-創(chuàng)新互聯(lián)

臨近離職,決定補一下之前一直沒來得及學的C++11的知識,突然翻到了異常處理,感覺有點好玩就自己寫了個測試程序,然后三觀徹底被顛覆了。
源代碼如下:

創(chuàng)新互聯(lián)建站專注于綏芬河網(wǎng)站建設(shè)服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供綏芬河營銷型網(wǎng)站建設(shè),綏芬河網(wǎng)站制作、綏芬河網(wǎng)頁設(shè)計、綏芬河網(wǎng)站官網(wǎng)定制、小程序定制開發(fā)服務,打造綏芬河網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供綏芬河網(wǎng)站排名全網(wǎng)營銷落地服務。
#include 
#include 
#include 

void speak(int i)
{
    if(i <= 0)
    {
        throw "System get a wrong...";
    }
}

void main()
{
    try
    {
        speak(-1);
    }
    catch(std::exception e)
    {
        std::cerr << "exception info:" << e.what() << std::endl;
    }
}

很簡單對不對,編譯也沒錯,然后運行就掛了,通過Debug跟蹤,發(fā)現(xiàn)是這么一行掛了
catch(std::exception e),然后各種懷疑,各種改,就差重裝系統(tǒng)了。

無意中改了這么一句,然后自己把異常處理了,改后的代碼如下:

#include 
#include 
#include 

void speak(int i)
{
    if(i <= 0)
    {
        throw std::exception("System get a wrong...");
    }
}

void main()
{
    try
    {
        speak(-1);
    }
    catch(std::exception e)
    {
        std::cerr << "exception info:" << e.what() << std::endl;
    }
}

注意throw 那一塊,很懵,可能是exception 是一個explict的類吧,沒太大的功夫研究,記住就行了。程序之所以掛掉,可能是因為這里沒能捕獲,直接交給操作系統(tǒng)了。

==================補充說明===================
上午說的那個exception類的聲明,我貼在下面,我在不同的平臺下又遇到問題了:

_STDEXT_BEGIN
class exception
    {   // base of all library exceptions
public:

    static _STD _Prhand _Set_raise_handler(_STD _Prhand _Pnew)
        {   // register a handler for _Raise calls
        const _STD _Prhand _Pold = _STD _Raise_handler;
        _STD _Raise_handler = _Pnew;
        return (_Pold);
        }

    ====這里就是為啥char *無法自動轉(zhuǎn)換為exception的原因了
    // this constructor is necessary to compile 
    // successfully header new for _HAS_EXCEPTIONS==0 scenario
    explicit __CLR_OR_THIS_CALL exception(const char *_Message = _MESG("unknown"), int x=1)
        _THROW0()
        : _Ptr(_Message)
        {   // construct from message string
                (void)x;
        }

    __CLR_OR_THIS_CALL exception(const exception& _Right) _THROW0()
        : _Ptr(_Right._Ptr)
        {   // construct by copying _Right
        }

    exception& __CLR_OR_THIS_CALL operator=(const exception& _Right) _THROW0()
        {   // assign _Right
        _Ptr = _Right._Ptr;
        return (*this);
        }

    virtual __CLR_OR_THIS_CALL ~exception()
        {   // destroy the object
        }

    virtual const char * __CLR_OR_THIS_CALL what() const _THROW0()
        {   // return pointer to message string
        return (_Ptr != 0 ? _Ptr : "unknown exception");
        }

    void __CLR_OR_THIS_CALL _Raise() const
        {   // raise the exception
        if (_STD _Raise_handler != 0)
            (*_STD _Raise_handler)(*this);  // call raise handler if present

        _Doraise(); // call the protected virtual
        _RAISE(*this);  // raise this exception
        }

protected:
    virtual void __CLR_OR_THIS_CALL _Doraise() const
        {   // perform class-specific exception handling
        }

protected:
    const char *_Ptr;   // the message pointer
    };
_STDEXT_END

我遇到的另一個問題是在gunc上,exception并沒有帶char 的構(gòu)造函數(shù),要想通過char構(gòu)造exception,就只能使用有這個構(gòu)造函數(shù)的子類;但是在windows平臺上,exception這個類卻又有這個構(gòu)造函數(shù)。這里記得就行了。

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。


網(wǎng)頁標題:C++異常拋出以及捕獲-創(chuàng)新互聯(lián)
本文路徑:http://weahome.cn/article/dsdshd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部