码迷,mamicode.com
首页 > 编程语言 > 详细

C++异常:no matching function for call to "Matrix(Matrix&)"

时间:2014-05-10 07:16:04      阅读:363      评论:0      收藏:0      [点我收藏+]

标签:style   color   c   a   rgb   cti   

C++异常:no matching function for call to "Matrix(Matrix&)"

 

我定义了一个类叫Matrix,其中构造函数explicit Matrix(const Matrix& source);

也写了一个方法:

Matrix Matrix::myFun(const Matrix &source)
{
  ...

    return *this;
}

编译报出上面的异常来,原因是explicit关键字抑制隐式转换,当我返回*this的时候相当于:Matrix myMatrix = *this,由于禁止隐式转换,所以这个是报错的。

当我删掉explicit关键字后,发生了隐式转换:Matrix tmp(*this),然后调用编译器提供的默认复制构造函数Matrix myMatrix(tmp)。则顺利通过编译。

C++异常:no matching function for call to "Matrix(Matrix&)",布布扣,bubuko.com

C++异常:no matching function for call to "Matrix(Matrix&)"

标签:style   color   c   a   rgb   cti   

原文地址:http://www.cnblogs.com/Shirlies/p/3719892.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!