使用 boost 创建一个始终返回 true 的 lambda 函数
假设我有一个采用某种形式的谓词的函数:
void Foo( boost::function<bool(int,int,int)> predicate );
如果我想用始终返回 true 的谓词来调用它,我可以定义一个辅助函数:
bool AlwaysTrue( int, int, int ) { return true; }
...
Foo( boost::bind( AlwaysTrue ) );
但是无论如何都可以调用这个函数(可能使用 boost::lambda )而不需要必须定义一个单独的函数吗?
[编辑:忘了说:我不能使用 C++0x]
Suppose I have a function which takes some form of predicate:
void Foo( boost::function<bool(int,int,int)> predicate );
If I want to call it with a predicate that always returns true, I can define a helper function:
bool AlwaysTrue( int, int, int ) { return true; }
...
Foo( boost::bind( AlwaysTrue ) );
But is there anyway to call this function (possibly using boost::lambda) without having to define a separate function?
[Edit: forgot to say: I CAN'T use C++0x]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
UncleBens 在 Scharron 的回答中评论了这一点,但我认为这实际上是最好的答案,所以我偷了它(对不起 UncleBens)。只需使用
Boost 文档中所述.Lambda,仅函子的最小数量为零,最大数量无限制。因此传递给函子的任何输入都将被忽略。
UncleBens commented on this in Scharron's answer, but I think it is actually the best answer so I'm stealing it (sorry UncleBens). Simply use
As described in the documentation for Boost.Lambda, only the minimum arity of the functor is zero, the maximum arity is unlimited. So any inputs passed to the functor will simply be ignored.
这是一个简单的例子:
诀窍在于
true || (_1 + _2 + _3)
,您将在其中创建具有 3 个参数的 boost lambda(_1
、_2
和_3
),始终返回true
。Here is a quick example :
The trick is in
true || (_1 + _2 + _3)
where you are creating a boost lambda with 3 arguments (_1
,_2
and_3
), always returningtrue
.