C++基础知识整理八(类的指针 类的数组 )

1,类的指针

C++基础知识整理八(类的指针 类的数组 )_第1张图片

mydata.cpp代码如下:

#include "pch.h"
#include 
#include "Cdate.h"
using namespace std;

int main(int argc, char* argv[])
{
	Cdate date;
	Cdate* c_date = &date;
	c_date->inputdate();
	c_date->printdate();
	return 0;
}

Cdate.cpp代码如下:

#include "pch.h"
#include "Cdate.h"
#include 
using namespace std;


Cdate::Cdate()
{
}


Cdate::~Cdate()
{
}

void Cdate::inputdate()
{
	cout << "请输入年月日:";
	cin >> year >> month >> da

你可能感兴趣的:(C++)