gpt4 book ai didi

c++ - 在 C++ 中从 map 中获取第一个值

转载 作者:IT老高 更新时间:2023-10-28 13:23:35 26 4
gpt4 key购买 nike

我在 C++ 中使用 map。假设我在 map 中有 10 个值,而我只想要第一个。如何获得?

谢谢。

最佳答案

map 不会保持插入顺序。使用 *(myMap.begin()) 获取第一对的值(排序时键最小的那个)。

您也可以执行 myMap.begin()->first 来获取 key ,myMap.begin()->second 来获取值。

关于c++ - 在 C++ 中从 map 中获取第一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4826404/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com