访问地图数据结构内的结构元素

时间:2012-07-31 18:23:15

标签: c++ data-structures

我有这个结构,并映射数据结构,如:

#include <map>

struct category {
        int id;
        std::string name;
};

std::map<int, category> categories;

现在,使用类别我想要显示结构类别中的元素“name”。但我无法访问它。有人可以帮忙吗?

由于

1 个答案:

答案 0 :(得分:2)

你是什么意思,你无法访问它?

categories[0].name;

应该足够了。