阅读程序(9)

来源:互联网 发布:摩托车违章查询软件 编辑:程序博客网 时间:2024/05/16 12:09


*Copyright (c) 2014,烟台大学计算机学院

*All right reserved.

*文件名称:test.cpp

*作    者:韩双志

*完成日期:2016年6月9日

*版本号:v1.0

*

*问题描述:阅读下面的程序,对照运行结果,领会STL的用法

*输入描述:无

*输出描述:stl算法后的结果

/*

#include <string>
#include <iostream>
#include <map>
using namespace std;
class CStudent
{
public :
    int nStudentID;
    int nAge;
public :
    CStudent()  {  }
    CStudent(int nSID, int nA)
    {
        nStudentID=nSID;
        nAge=nA;
    }
    //复制构造函数
    CStudent(const CStudent& ob)
    {
        nStudentID=ob.nStudentID;
        nAge=ob.nAge;
    }
};
int main()
{
    map <string, CStudent> mapStudent;
    mapStudent["zhangsan"] = CStudent(100012, 22);
    mapStudent["Lisi"] = CStudent(100085, 21);
    mapStudent["Wangwu"] = CStudent(100093, 23);
    cout << "The Student number for Lisi  is " <<(mapStudent["Lisi"].nStudentID) << endl;
    return 0;
}
*/

运行结果

知识点总结

   类字符串运算

学习心得

  了解了类字符串运算

0 0
原创粉丝点击