#include<iostream>
using namespace std;
class Point
{
double x;
double y;
public:
void Setpoint(double x,double y)
{
x=x;
y=y;
}
double Getx()
{
return x;
}
double Gety()
{
return y;
}
void Display()
{
cout<<"该点坐标:("<<Getx<<","<<Gety<<")";
cout<<endl;
}
};
int main()
{
cout<<"第一个点坐标:";
Point point1(5,9);
point1.Display();
cout<<"第二个点坐标:";
Point point2(1,6);
point2.Display();
return 0;
}
为什么Point point1它说no overloaded function takes 2 parameters
答案:1 悬赏:0 手机版
解决时间 2021-05-06 09:30
- 提问者网友:欺烟
- 2021-05-06 05:51
最佳答案
- 五星知识达人网友:山有枢
- 2021-05-06 07:12
没有重载的采用2个参数的方法 你看下你的方法构成 参数数目错误 或者参数类目错误
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯