0

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

#include <map>

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

std::map<int, category> categories;

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

谢谢

4

1 回答 1

2

你是什​​么意思你不能访问它?

categories[0].name;

应该足够了。

于 2012-07-31T18:25:11.623 回答