标签: c++
伙计们。在这里需要一些帮助。 我无法访问列表的第二个元素。看看:
std::list<std::pair<std::string, uint8_t>> ord; ord.emplace_back("String", 10); for (const auto& it : ord) { std::cout << it.first << " " << it.second << std::endl; }
控制台:
关于uint8_t的值呢?它应该打印10,对吗? 谢谢。