STL地图的奇怪输出

Posted

tags:

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

C程序员试图调用C ++映射(使用相关数组或散列的功能)。

字符串只是一个开头,将继续哈希二进制字符串。卡在第一步。不知道为什么这个程序的输出只会返回0。

#include <string.h>
#include <iostream>
#include <map>
#include <utility>
#include <stdio.h>

using namespace std;

extern "C" {
int get(map<string, int> e, char* s){
    return e[s];
}
int set(map<string, int> e, char* s, int value) {
    e[s] = value;
}
}

int main()
{
   map<string, int> Employees;
    printf("size is %d
", sizeof(Employees));
   set(Employees, "jin", 100);
   set(Employees, "joe", 101);
   set(Employees, "john", 102);
   set(Employees, "jerry", 103);
   set(Employees, "jobs", 1004);
    printf("value %d
", get(Employees, "joe"));

}

谢谢。

答案

发现了两个错误(还):

printf("size is %d
", sizeof(Employees));

必须

printf("size is %d
", Employees.size());

sizeof为您提供对象的大小,而不是内部元素的数量。


int set(map<string, int> e, char* s, int value) 

必须

int set(map<string, int> &e, char* s, int value)

否则你将复制到函数,而不是原件(如在C中)。复制将在离开函数范围后丢弃。原件没有改变。

以上是关于STL地图的奇怪输出的主要内容,如果未能解决你的问题,请参考以下文章

如何在地图片段 API v2 布局顶部添加按钮

所有地图变体的通用打印功能 C++ STL

地图服务器奇怪的 REQUEST=GetCapabilities&SERVICE=WMS&VERSION=1.1.1 输出

具有单个键的多个值的STL集合

为啥 std::distance 在 stl 地图中被击中?

谷歌地图片段内的片段可以操纵我的地图