为什么operator =抛出一个未处理的异常?

时间:2012-09-11 17:11:18

标签: c++

我只是在Widget中编写一个简单的operator =,但是当我运算符=它时,它会在vs2010中抛出一个Unhandled异常。 我在这些代码中没有看到任何错误。需要一些帮助。

 class WidgetImpl
    {
        public:
            WidgetImpl ( int _a, int _b, int _c ) :
                a_ ( _a ), b_ ( _b ), c_ ( _c )
            {
            };
            //WidgetImpl& operator= ( const WidgetImpl& rhs ) {    //if I define this function,everything will be allright.

            //   if ( this == &rhs ) { return *this; }
            ////
            ////.... do something

            ////
            //return *this;
            // }

            int  a_, b_, c_;
            std::vector<double> vector_;
    };


    class Widget
    {
        public:
            Widget () : pImpl_ ( NULL ) {};
            Widget ( const Widget& rhs ) {};
            Widget& operator= ( const Widget& rhs ) 
            {
                if ( this == &rhs ) { return *this; }

                *pImpl_ = * ( rhs.pImpl_ );   
                return ( *this );
            }
            void SetImp ( WidgetImpl* _Impl )
            {
                this->pImpl_ = _Impl;
            }

            WidgetImpl* pImpl_;
    };

    int main ( int argc, char** argv )
    {
        Widget w;
        WidgetImpl* wimpl = new WidgetImpl ( 1, 2, 3 );
        w.SetImp ( wimpl );
        Widget w2;
        w2 = w;  //Unhandled exception throws here

        return 0;
    }

如上所示。如果我在类WidgetImpl中定义operator =。似乎一切都好......很奇怪..

1 个答案:

答案 0 :(得分:4)

您的w2的{​​{1}}为空,因此分配将导致未定义的行为(通常是违反分段)。

在代码中

pImpl_

LHS上的 *pImpl_ = * ( rhs.pImpl_ ); 为空。