c – boost ::修剪std :: vector中的每个字符串

前端之家收集整理的这篇文章主要介绍了c – boost ::修剪std :: vector中的每个字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在找到正确的语法来修剪std :: vector中的每个字符串.

我试过了

std::vector<std::string> v;
std::for_each(v.begin(),v.end(),&boost::trim);

这在MSVC7.1中给了我以下错误消息.

error C2784: ‘_Fn1 std::for_each(_InIt,_InIt,_Fn1)’ : could not deduce template argument for ‘T1’ from ‘std::vector<_Ty>::iterator’ with [_Ty=std::string] : see declaration of ‘std::for_each’

error C2896: ‘_Fn1 std::for_each(_InIt,_Fn1)’ : cannot use function template ‘void boost::algorithm::trim(SequenceT &,const std::locale &)’ as a function argument : see declaration of ‘boost::algorithm::trim’

如果我明确地给模板参数修剪第二个参数,编译器无法找到,尽管它默认设置.

std::for_each(v.begin(),&boost::trim<std::string>);

error C2198: ‘void (__cdecl *)(std::string &,const std::locale &)’ : too few arguments for call through pointer-to-function

我想知道如何使用正确的语法调用v中每个元素的修剪.

解决方法

您还需要绑定trim(语言环境)的第二个参数:
std::vector<std::string> v;
std::for_each(v.begin(),boost::bind(&boost::trim<std::string>,_1,std::locale() ));
原文链接:https://www.f2er.com/c/111841.html

猜你在找的C&C++相关文章