来自「visualCplusplus学习课件大连东软培训教材」· 代码 · 共 51 行

TXT
51
字号
#include "stdafx.h"
#include <iostream>
using namespace std;

#include "stdafx.h"
#include <iostream>
using namespace std;

class CDate
{
public:
	void SetYear(const int& nYear)
	{
		m_nYear = nYear;
	}
	void SetMonth(const int& nMonth)
	{
		m_nMonth = nMonth;
	}
	void SetDay(const int& nDay)
	{
		m_nDay = nDay;
	}
	void Set(const int& nMonth, const int& nDay, const int& nYear)
	{
		m_nYear = nYear;
		m_nMonth = nMonth;
		m_nDay = nDay;
	}
	void print();
protected:
private:
	int m_nYear;
	int m_nMonth;
	int m_nDay;
};

void CDate::print()
{
	cout << m_nYear << "/" << m_nMonth << "/" << m_nDay << endl;
}

void main()
{ 
  CDate t;
  CDate&x = t;
  t.SetYear(2006);
  t.SetMonth(12);
  t.SetDay(23);
  x.print();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?