?? student.cpp
字號(hào):
// 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)
{
}
?? 快捷鍵說明
復(fù)制代碼
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -