永发信息网

关于 no matching function for call to【C++】

答案:1  悬赏:0  手机版
解决时间 2021-07-31 06:03
  • 提问者网友:献世佛
  • 2021-07-30 23:28

#include <iostream>
#include <stdlib.h>
using namespace std;
class Point
{
public:
Point(int xx =0,int yy =0)
{
X=xx;
Y=yy;
}
Point(Point &p);
int GetX()
{
return X;
}
int GetY()
{
return Y;
}
private:
int X,Y;
};
Point::Point(Point &p)
{
X=p.X;
Y=p.Y;
cout<<"拷贝构造函数被调用"<<endl;
}
void fun1(Point p)
{
cout<<p.GetX()<<endl;
}
Point fun2()
{
Point A(1,2);
return A;
}
int main()
{
Point A(4,5);
Point B(A);
cout<<B.GetX()<<endl;
fun1(B);
B=fun2();
cout<<B.GetX()<<endl;
system("pause >nul");
}

在编译时为什么会出现:no matching function for call to `Point::Point(Point)'

的错误?

最佳答案
  • 五星知识达人网友:几近狂妄
  • 2021-07-31 00:25

奇怪了


你是什么编译器?


为什么我可以呢?

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯