博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
map使用实例
阅读量:5294 次
发布时间:2019-06-14

本文共 530 字,大约阅读时间需要 1 分钟。

#include "hptime.h"

#include <iostream>
#include <Windows.h>
#include <time.h>
#include <string>
#include <cmath>
#include <map>
using namespace std;

int main()

{
 
 map<string, string>  mapDatas;
 mapDatas["001"] = "liang";
 mapDatas["002"] = "ganquanfu";

 map<string, string>::iterator iterMap = mapDatas.find("002");

 if(iterMap != mapDatas.end())
 {
  cout << iterMap->first.c_str() << "  " << iterMap->second.c_str() << endl;
  //输出002   ganquanfu
 }

 int wait;

 cin >> wait;
 
    return 0;
}

转载于:https://www.cnblogs.com/ganquanfu2008/p/3288143.html

你可能感兴趣的文章
利用maven管理项目之POM文件配置
查看>>
用HttpCombiner来减少js和css的请问次数
查看>>
FUSE-用户空间文件系统
查看>>
将tiff文件转化为jpg文件并保存
查看>>
ubuntu 16.04 开机脚本
查看>>
 VS2012 C#调用C++ dll
查看>>
TCL:表格(xls)中写入数据
查看>>
SQL SERVER 2005中如何获取日期(一个月的最后一日、一年的第一日等等)
查看>>
django 学习笔记(转)
查看>>
控制台程序秒变Windows服务(Topshelf)
查看>>
字节流与字符流的区别详解
查看>>
20141026--娱乐-箱子
查看>>
自定义分页
查看>>
Oracle事务
查看>>
任意输入10个int类型数据,把这10个数据首先按照排序输出,挑出这些数据里面的素数...
查看>>
String类中的equals方法总结(转载)
查看>>
图片问题
查看>>
bash使用规则
查看>>
AVL数
查看>>
第二章练习
查看>>