gpt4 book ai didi

c++ - 没有匹配函数来调用 Std::find?

转载 作者:太空狗 更新时间:2023-10-29 19:46:50 26 4
gpt4 key购买 nike

我正在尝试做:

std::find(images_map.begin(), images_map.end(), current_rgb));

哪里:

QRgb current_rgb;
QMap<QRgb, MI*> images_map;

但我得到:

error: no matching function for call to 'find(QMap<unsigned int, MI*>::iterator, QMap<unsigned int, MI*>::iterator, QRgb&)

最佳答案

原因是因为find期望容器的value_type与传入find的searchee类型相同。您只传递了键,而不是键和值。

相反,在容器本身上使用 find 方法(这也具有对数而不是线性时间复杂度的好处)。

关于c++ - 没有匹配函数来调用 Std::find?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6684114/

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