gpt4 book ai didi

extern C 结构的 C++ 默认复制/移动赋值运算符不是 const

转载 作者:行者123 更新时间:2023-11-30 03:56:00 28 4
gpt4 key购买 nike

我有一个 std::map<CXCursor, DeclarationContent>我想使用 std::remove_if 从中删除元素.

CXCursor是外部 C 代码 (libClang) 中的(a 的 typedef)结构,我不能/不能修改。

来自 clang++ 3.4.2 --std=c++11 的错误消息:

stl_pair.h:170:8: error: no viable overloaded '='
stl_algo.h:1152:23: note: in instantiation of member function std::pair<const CXCursor, DeclarationContent>::operator=' requested here

extract.cc:34:8: in instantiation of function template specialization 'std::remove_if<std::_Rb_tree_iterator<std::pair<const CXCursor, DeclarationContent> >, bool (*)(std::pair<const CXCursor, DeclarationContent> &)>' requested here
std::remove_if(decls.begin(), decls.end(), noCodeGenerationRequested);

include/clang-c/Index.h:2137:9: note: candidate function (the implicit copy assignment operator) not viable:
'this' argument has type 'const CXCursor', but method is not marked const

/include/clang-c/Index.h:2137:9: note: candidate function (the implicit move assignment operator) not viable:
'this' argument has type 'const CXCursor', but method is not marked const

代码基本上是:

std::map<CXCursor, DeclarationContent> decls;
// filling the map
std::remove_if(decls.begin(), decls.end(), noCodeGenerationRequested);

bool noCodeGenerationRequested(std::map<CXCursor, DeclarationContent>::value_type & v)
{ /* FUN GOES HERE */ return true; }

从阅读错误消息来看,隐式赋值运算符似乎不是 const 限定的,这在映射的情况下是必需的(因为它的键始终是 const)。

我可以围绕 CXCursor 编写一个提供那些赋值运算符的包装类,但也许还有另一种方法?


std::remove_if不适用于 std::map ,参见:remove_if equivalent for std::map

最佳答案

map不适用于 std::remove_if , 自 map::value_type类型为 std::pair<const T, U> ,但是 std::remove_if要求,取消引用的迭代器应该是 MoveAssignable .只使用循环,或者可能是 copy_if在另一个容器中否定你的谓词。

或者您可以使用 boost::range::remove ,如果您已经在您的项目中使用了 boost。

关于extern C 结构的 C++ 默认复制/移动赋值运算符不是 const,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28737600/

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