⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 student.h

📁 This companion disc contains the source code for the sample programs presented in INSIDE VISUAL C++
💻 H
字号:
// student.h

#ifndef _INSIDE_VISUAL_CPP_STUDENT
#define _INSIDE_VISUAL_CPP_STUDENT

class CStudent : public CObject
{
	DECLARE_DYNAMIC(CStudent)
public:
	CString m_strName;
	int m_nGrade;

	CStudent()
	{
		m_nGrade = 0;
	}

	CStudent(const char* szName, int nGrade) : m_strName(szName)
	{
		m_nGrade = nGrade;
	}

	CStudent(const CStudent& s) : m_strName(s.m_strName)
	{
		// copy constructor
		m_nGrade = s.m_nGrade;
	}

	const CStudent& operator =(const CStudent& s)
	{
		m_strName = s.m_strName;
		m_nGrade = s.m_nGrade;
		return *this;
	}

	BOOL operator ==(const CStudent& s) const
	{
		if ((m_strName == s.m_strName) && (m_nGrade == s.m_nGrade)) {
			return TRUE;
		}
		else {
			return FALSE;
		}
	}

	BOOL operator !=(const CStudent& s) const
	{
		// Let抯 make use of the operator we just defined!
		return !(*this == s);
	}

#ifdef _DEBUG
	void Dump(CDumpContext& dc) const;
#endif // _DEBUG
};

#endif // _INSIDE_VISUAL_CPP_STUDENT

⌨️ 快捷键说明

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