C++類和異常例子

gaopengtttt發表於2016-08-08
簡單的列子:
#include
using namespace std;

class test
{
        private:
                int a;
                int b;
        public:
            test(int& a1,int& b1) {
                        a=a1;
                        b=b1;
                }
                void testcom(void){
                        if(a==b)
                        {
                                cout<<"exp hint!"<<endl;
                                throw *this;
                        }
                }
                void show(void)
                {
                        cout<<a<<" "<<b<<endl;=""  ="" }                 ~test(){};
};

int main(void)
{
        int a;
        int b;
        cin>>a;
        cin>>b;
        test t1(a,b);
        try{
                t1.testcom();
        }
        catch(test& t)
        {
                t.show();
                return 1;
        }
        return 0;
}

這裡使用throw *this 來將具體的類資料返回給catch
</a<</endl;

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

相關文章