我有这个结构,并且映射数据结构如下:
#include <map>
struct category {
int id;
std::string name;
};
std::map<int, category> categories;
现在,使用类别我想显示结构类别中的元素“名称”。但我无法访问它。任何人都可以帮忙吗?
谢谢
我有这个结构,并且映射数据结构如下:
#include <map>
struct category {
int id;
std::string name;
};
std::map<int, category> categories;
现在,使用类别我想显示结构类别中的元素“名称”。但我无法访问它。任何人都可以帮忙吗?
谢谢