手机版

实验5 类和对象实验报告(3)

发布时间:2021-06-06   来源:未知    
字号:

3)error C2512: 'Coordinate' : no appropriate default constructor available

error C2664: '__thiscall Coordinate::Coordinate(class Coordinate &)' : cannot convert parameter 1 from 'const int' to 'class Coordinate &'

A reference that is not to 'const' cannot be bound to a non-lvalue

修改:

#include <iostream>

using namespace std;

class Coordinate

{

public:

Coordinate(int x1, int y1){x=x1; y=y1;} Coordinate(Coordinate &p);

Coordinate();

Coordinate(int i);

~Coordinate(){cout<<"Destructor is called."<<endl;} int getx(){return x;} int gety(){return y;}

private:

};

Coordinate::Coordinate(Coordinate &p){

}

int main(){

Coordinate p1(3,4); Coordinate p2(p1); x=p.x; y=p.y; cout<<"Copy initianization constructor is called."<<endl; int x, y;

Coordinate p5(2);

Coordinate p3=p2; cout<<"p3=("<<p3.getx()<<","<<p3.gety()<<")"<<endl;

return 0;}

实验5 类和对象实验报告(3).doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
×
二维码
× 游客快捷下载通道(下载后可以自由复制和排版)
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能出现无法下载或内容有问题,请联系客服协助您处理。
× 常见问题(客服时间:周一到周五 9:30-18:00)