usernode.cpp

来自「一个用mfc开发的基于文本数据库的学生信息管理系统」· C++ 代码 · 共 50 行

CPP
50
字号
// UserNode.cpp: implementation of the CUserNode class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "ClassSystem.h"
#include "UserNode.h"

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

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

CUserNode::CUserNode(UINT key,CString account,CString name,CString major,CString password,CString city ,CString college ,
		CString dormitory,CString phone,CString mobilephone ,CString email,
		CString homeAddress,CString postNumber,CString cet4,CString cet6 ,
		CString description,CUserNode *next  )
{
	this->m_key = key;
	this->m_account = account;
	this->m_name = name;
	this->m_major = major;
	this->m_password = password;
	this->m_city = city;
	this->m_college = college;
	this->m_dormitory = dormitory;
	this->m_phone = phone;
	this->m_mobilephone = mobilephone;
	this->m_email = email;
	this->m_homeAddress = homeAddress;
	this->m_postNumber = postNumber;
	this->m_CET4 = cet4;
	this->m_CET6 = cet6;
	this->m_description = description;
	this->next = next;
	
}

CUserNode::~CUserNode()
{

}


⌨️ 快捷键说明

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