1

我尝试使用for_eachwith boost::trim。首先我使用了错误的代码

 std::for_each(v.begin(),v.end(),&boost::trim<std::string>));
 // error: too few arguments to function

然后我用这个修复(在线阅读)

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

当编译器需要将此函数传递给for_each. 我认为因为std::localeboost::trim我的代码的第二个输入参数的默认参数应该有效。

4

2 回答 2

5

调用函数时会应用默认参数,但它们不构成函数签名的一部分。特别是,当您通过函数指针调用函数时,您通常会丢失哪些默认参数可用的信息:

void (*f)(int, int);

void foo(int a, int b = 20);
void bar(int a = 10, int = -8);

f = rand() % 2 == 0 ? foo : bar;
f();   // ?

结果是,要在您身上使用bindf您将始终需要填充这两个参数。

于 2013-08-30T08:45:06.273 回答
3

您始终可以使用 lambda 编写它:

std::for_each(v.begin(), v.end(), [](std::string & s) { boost::trim(s); });

现在编译器将有足够的知识来使用默认参数。

于 2013-08-30T08:46:21.690 回答