std::foreach 与 boost::bind

发布于 2024-11-09 10:03:45 字数 328 浏览 0 评论 0原文

这是什么问题:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

听风吹 2024-11-16 10:03:45

您需要使用boost::ref通过引用传递参数/对象,否则bind会创建一个内部副本。

std::for_each(
    second.begin(), second.end(),
    boost::bind(&std::list<T>::push_back, boost::ref(first), _1)
);

You need to use boost::ref to pass an argument/object via reference, otherwise bind creates an internal copy.

std::for_each(
    second.begin(), second.end(),
    boost::bind(&std::list<T>::push_back, boost::ref(first), _1)
);

请注意,虽然 Cat Plus Plus 的解决方案适合您,但在 C++03 中(在即将推出的标准版本中的 lambda 出现之前)中执行此类操作的鼓励方法是使用标准库算法和函子。不幸的是,在某些情况下,它们本身变得非常复杂,但在这种情况下,我认为它们会生成更清晰的代码:

std::copy(second.begin(), second.end(), std::back_inserter(first));

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:

std::copy(second.begin(), second.end(), std::back_inserter(first));
颜漓半夏 2024-11-16 10:03:45
std::list<T> ls;
std::list<T> ls0;
// ...
ls.insert(ls.end(), ls0.begin(), ls0.end());
std::list<T> ls;
std::list<T> ls0;
// ...
ls.insert(ls.end(), ls0.begin(), ls0.end());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文