c_cpp map.cpp

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp map.cpp相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <string>
#include <map> // Cabecera necesaria para usar map
 
int main()
{
  // Creamos un map de string (clave) e int (valor)
	std::map<std::string, int> m;

	m["uno"] = 1;
	m["dos"] = 2;
	m["tres"] = 3;

	std::cout << m["uno"] << std::endl;
	std::cout << m["dos"] << std::endl;
	std::cout << m["tres"] << std::endl;
}

以上是关于c_cpp map.cpp的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 存储器使用的-的-unordered_map.cpp

遍历unordered_map cpp的问题

重载map排序(降序)

git上传(本地和远程有冲突时)

catkin_make时报错找不到custom include custom.h

c_cpp 130.周围地区