studentinfo.cpp

来自「深入浅出Visual C++入门进阶与应用实例 随书光盘 作者 何志丹」· C++ 代码 · 共 36 行

CPP
36
字号
// StudentInfo.cpp: implementation of the CStudentInfo class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "Ex040201.h"
#include "StudentInfo.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CStudentInfo::CStudentInfo(UINT uID,CString strName,enum STU_SEX eSex,CString strHomePlace)
{
	m_uID		= uID ;
	m_strName	= strName ;
	m_eSex		= eSex ;
	m_strHomePlace = strHomePlace ;
}


CStudentInfo::CStudentInfo()
{
}

CStudentInfo::~CStudentInfo()
{

}

⌨️ 快捷键说明

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