📄 student.cpp
字号:
// Student.cpp: implementation of the CStudent class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Student.h"
#include<iostream>
using namespace std;
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CStudent::CStudent()
{
m_strName = "";
m_strNo = "";
m_iGrade = 0;
//m_vCourse.clear();
}
CStudent::~CStudent()
{
}
CStudent::CStudent(string strName,
string strNo,
int iGrade):m_strName(strName),
m_strNo(strNo),
m_iGrade(iGrade)
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -