| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2060 人关注过本帖
标题:STL中的for_each函数指针想带参数怎么办呢
取消只看楼主 加入收藏
nwpu063417
Rank: 3Rank: 3
等 级:论坛游民
威 望:8
帖 子:428
专家分:28
注 册:2007-5-11
结帖率:60%
收藏
 问题点数:0 回复次数:1 
STL中的for_each函数指针想带参数怎么办呢
我想在for_each的时候把满足equal函数的条件的变量加到list里:

Advertisement* equal(Listing &list, string keyword)(Advertisement* ad)
{
    if (ad->getTitle().find(keyword.c_str()) != -1)
        list.add(ad);
    return ad;
}

Listing Listing::filter(string keyword)
{
    if (keyword == "")
        return *this;

    Listing list;
    for_each(this->begin(), this->end(), equal(list,keyword));
搜索更多相关主题的帖子: STL for_each 
2008-12-03 23:29
nwpu063417
Rank: 3Rank: 3
等 级:论坛游民
威 望:8
帖 子:428
专家分:28
注 册:2007-5-11
收藏
得分:0 
谢谢你,我的问题已经解决了。我用了一个类
// A class that used for accept the function parameters
class Equal
{
private:
    string keyword;        // The value of keyword
    Listing &list;        // The list to add Advertisement*
public:
    // Constructor initializes the value of Listing list and string keyword
    Equal (Listing &init_list  ,const string init_keyword)
        : list(init_list) ,keyword ( init_keyword )
    {}

    // The function call for the element
    void operator ( ) ( Advertisement* elem ) const
    {
        if (elem->getTitle().find(keyword) != -1 ||
            elem->getBody().find(keyword) != -1)
        {
            list.add(elem);
        }
    }
};

// Return a Listing object that contains those advertisements
// whose name or description contains keyword
Listing Listing::filter(string keyword)
{
    if (keyword == "")
        return *this;

    Listing list;
    for_each(this->begin(), this->end(), Equal(list, keyword));

    return list;
}

2008-12-04 22:21
快速回复:STL中的for_each函数指针想带参数怎么办呢
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016568 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved