std::foreach 与 boost::bind
这是什么问题:
template <typename T>
std::list<T> & operator+=(std::list<T> & first, std::list<T> const& second)
{
std::for_each(second.begin(), second.end(), boost::bind(&std::list<T>::push_back, first, _1));
return first;
}
它编译得很好,但不起作用。
What's wrong with this:
template <typename T>
std::list<T> & operator+=(std::list<T> & first, std::list<T> const& second)
{
std::for_each(second.begin(), second.end(), boost::bind(&std::list<T>::push_back, first, _1));
return first;
}
It compiles fine, but doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要使用boost::ref通过引用传递参数/对象,否则bind会创建一个内部副本。
You need to use
boost::ref
to pass an argument/object via reference, otherwise bind creates an internal copy.请注意,虽然 Cat Plus Plus 的解决方案适合您,但在 C++03 中(在即将推出的标准版本中的 lambda 出现之前)中执行此类操作的鼓励方法是使用标准库算法和函子。不幸的是,在某些情况下,它们本身变得非常复杂,但在这种情况下,我认为它们会生成更清晰的代码:
Note that while Cat Plus Plus's solution would work for you, the encouraged way to do such things in C++03 (before the advent if lambdas in the upcoming standard version) is to use the standard library algorithms and functors. Unfortunately, in some cases they get quite convoluted themselves, but in this case I think they produce clearer code: