在CStudentMg.cpp中为什么这么命名:addAStu函数,为什么同时有CStudent、CStudentMg两个类
代码:CStudent CStudentMg::addAStu(map<int, CStudent>& m1, CStudent& stu)
https://blog.csdn.net/weixin_41213648/article/details/89357940
CStudent CStudentMg::addAStu(map<int, CStudent>& m1, CStudent& stu)
其中
第一个CStudent表示函数addAStu的返回值类型
CStudentMg表示addAStu函数是类CStudentMg的成员函数