其他分享
首页 > 其他分享> > 2021-05-03

2021-05-03

作者:互联网

实验一:

1.

(1)

(2)

解释:构造函数在建立对象时自动执行。

(3)

原因:无对应的构造函数。

修改: Coordinate(){};

         Coordinate(int){};

(4)   注意参数

2.

#include<iostream> 
using namespace std;
class Date {
public:
	void printDate(); //显示日期 
	void setDay(int); //设置日的值 
	void setMonth(int); //设置月的值 
	void setYear(int); //设置年的值 
private:
	int day, month, year;
};
void Date::printDate() {
	cout &

标签:03,printDate,05,int,void,Coordinate,2021,Date,构造函数
来源: https://blog.csdn.net/m0_57826406/article/details/116381229