gpt4 book ai didi

c++ - 声明模板类型以调用 make_pair

转载 作者:太空宇宙 更新时间:2023-11-03 10:29:25 26 4
gpt4 key购买 nike

<分区>

也许我太笨了,但我看不出这段代码有什么问题。我开始怀疑我的工具。我正在使用 Clang (C++11) 及其 libc++。如果是我的错,我道歉并提前感谢指出我愚蠢的人,但如果不是,也许这是一个更深层次的问题..

std::map<int, bool> map_;

map_.insert(std::make_pair<int, bool>(5, true)); //Use a literal, compiles OK

int x = 5;
map_.insert(std::make_pair<int, bool>(x, true)); //Use a local of same type, compile error: 'no known conversion from 'int' to 'int &&' for 1st argument'

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