如何迭代成对的列表

时间:2019-05-26 19:32:11

标签: 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;
}

控制台:

enter image description here

关于uint8_t的值呢?它应该打印10,对吗? 谢谢。

0 个答案:

没有答案