invalid use of 'this' outside of a non-static member function
运算符重载函数,好像是需要在类里面定义好,要不然使用this->ptr时,就会报错
原来是想在类里面的函数,不小心括错了,让他括在外面了。
错误情况
正确能运行:
invalid use of 'this' outside of a non-static member function
运算符重载函数,好像是需要在类里面定义好,要不然使用this->ptr时,就会报错
原来是想在类里面的函数,不小心括错了,让他括在外面了。
错误情况
正确能运行: