gpt4 book ai didi

c++ - 为什么不能 map::find 指向 const 的指针?

转载 作者:行者123 更新时间:2023-11-30 01:02:03 25 4
gpt4 key购买 nike

简而言之,为什么它不能编译

#include <map>
int main()
{
std::map<int*, char> m;
const int *x = nullptr;
m.find(x);
}

这不是一段有效代码的可能原因是什么?

为什么查找是指针还是指向 const 的指针很重要?

看起来和闻起来都像 bug ......

不用了,不用 const_cast

最佳答案

Looks and smells like a bug...

为什么会是一个错误?

find的参数是对 key 类型的常量引用(对 int * 的常量引用)。

您不能绑定(bind) const int *对于这样的引用,因为const int *无法隐式转换为 int * .


从 C++14 开始,您可以通过使用透明比较器来解决这个问题:std::map<int*, char, std::less<>> .

用透明的比较器find成为模板。它适用于任何参数类型,只要它可以与键类型进行比较。

关于c++ - 为什么不能 map::find 指向 const 的指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56978429/

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