`
aspnetwinform
  • 浏览: 89844 次
  • 性别: Icon_minigender_2
  • 来自: 武汉
社区版块
存档分类
最新评论

从零开始学C++之STL(九):函数适配器bind2nd 、mem_fun_ref 源码分析、函数适配器应用举例

 
阅读更多

一、适配器

三种类型的适配器:

容器适配器:用来扩展7种基本容器,利用基本容器扩展形成了栈、队列和优先级队列


迭代器适配器:(反向迭代器、插入迭代器、IO流迭代器)


函数适配器:函数适配器能够将仿函数和另一个仿函数(或某个值、或某个一般函数)结合起来。

针对成员函数的函数适配器

针对一般函数的函数适配器


二、函数适配器示例

C++ Code
<nobr>1<br> 2<br> 3<br> 4<br> 5<br> 6<br> 7<br> 8<br> 9<br> 10<br> 11<br> 12<br> 13<br> 14<br> 15<br> 16<br> 17<br> 18<br> 19<br> 20<br> 21<br> 22<br> 23<br> 24<br> 25<br> 26<br> 27<br> 28<br> 29<br> 30<br> 31<br> 32<br></nobr>
#include<iostream>
#include<algorithm>
#include<functional>
#include<vector>

usingnamespacestd;

boolis_odd(intn)
{
returnn%2==1;
}

intmain(void)
{
inta[]={1,2,3,4,5};
vector<int>v(a,a+5);

cout<<count_if(v.begin(),v.end(),is_odd)<<endl;

//计算奇数元素的个数
//这里的bind2nd将二元函数对象modulus转换为一元函数对象。
//bind2nd(op,value)(param)相当于op(param,value)
cout<<count_if(v.begin(),v.end(),
bind2nd(modulus<int>(),2))<<endl;


//bind1st(op,value)(param)相当于op(value,param);
cout<<count_if(v.begin(),v.end(),
bind1st(less<int>(),4))<<endl;

return0;
}

这里的bind2nd将二元函数对象modulus转换为一元函数对象。是如何做到的呢?跟踪源码就知道了。

首先,bind2nd 是一个模板函数,如下:

C++ Code
<nobr>1<br> 2<br> 3<br> 4<br> 5<br> 6<br> 7<br> 8<br> 9<br></nobr>
//TEMPLATEFUNCTIONbind2nd
template<class_Fn2,
class_Ty>inline
binder2nd<_Fn2>bind2nd(const_Fn2&_Func,const_Ty&_Right)
{
//returnabinder2ndfunctoradapter
typename_Fn2::second_argument_type_Val(_Right);
return(std::binder2nd<_Fn2>(_Func,_Val));
}


将匿名对象modulus<int>() 和 2 传递进去,返回值是std::binder2nd<_Fn2>(_Func,_Val); 即是一个模板类对象,看binder2nd 模板类

C++ Code
<nobr>1<br> 2<br> 3<br> 4<br> 5<br> 6<br> 7<br> 8<br> 9<br> 10<br> 11<br> 12<br> 13<br> 14<br> 15<br> 16<br> 17<br> 18<br> 19<br> 20<br> 21<br> 22<br> 23<br> 24<br> 25<br> 26<br> 27<br> 28<br> 29<br> 30<br> 31<br> 32<br> 33<br> 34<br> 35<br> 36<br> 37<br></nobr>

//TEMPLATECLASSbinder2nd
template<class_Fn2>
classbinder2nd
:publicunary_function<typename_Fn2::first_argument_type,
typename_Fn2::result_type>
{
//functoradapter_Func(left,stored)
public:
typedefunary_function<typename_Fn2::first_argument_type,
typename_Fn2::result_type>_Base;
typedeftypename_Base::argument_typeargument_type;
typedeftypename_Base::result_typeresult_type;

binder2nd(const_Fn2&_Func,
consttypename_Fn2::second_argument_type&_Right)
:op(_Func),value(_Right)
{
//constructfromfunctorandrightoperand
}

result_typeoperator()(constargument_type&_Left)const
{
//applyfunctortooperands
return(op(_Left,value));
}

result_typeoperator()(argument_type&_Left)const
{
//applyfunctortooperands
return(op(_Left,value));
}

protected:
_Fn2op;//thefunctortoapply
typename_Fn2::second_argument_typevalue;//therightoperand
};

即构造时,binder2nd 的2个成员op 和 value 分别用module<int>() 和 2 初始化。接着看count_if 中的主要代码:


for (; _First != _Last; ++_First)


if (_Pred(*_First))


++_Count;


*_First 就是遍历得到的容器元素了,当满足_Pred 条件时_Count++,此时可以看成是:


std::binder2nd< modulus<int> >(modulus<int>(), 2)(*_First) 也就是调用binder2nd 类的operator() 函数,返回return(op(_Left,value));


也就是modulus<int>()(*_First, 2); 也就是调用modulus 类的operator() 函数,如下:


C++ Code
<nobr>1<br> 2<br> 3<br> 4<br> 5<br> 6<br> 7<br> 8<br> 9<br> 10<br> 11<br> 12<br></nobr>
//TEMPLATESTRUCTmodulus
template<class_Ty>
structmodulus
:publicbinary_function<_Ty,_Ty,_Ty>
{
//functorforoperator%
_Tyoperator()(const_Ty&_Left,const_Ty&_Right)const
{
//applyoperator%tooperands
return(_Left%_Right);
}
};

也就是如果左操作数是偶数则返回0,奇数% 2 == 1, 返回为真。最后总结,也就是count_if 计算容器中为奇数的元素个数,简单地


来说,可以理解成这样:bind2nd(op,value)(param)相当于op(param,value); 其中param 是元素值,value是需要绑定的参数,所谓


bind2nd 也即绑定第二个参数的意思,所以才说bind2nd将二元函数对象modulus转换为一元函数对象,因为第二个参数就是2,当然


这里的第一个参数就是遍历得到的容器元素值了。


与bind2nd 类似的还有 bind1st,顾名思义是绑定第一个参数的意思,如下的表达式:


count_if(v.begin(),v.end(),bind1st(less<int>(),4)) ; 也就是说计算容器中大于4的元素个数。这里绑定的是左操作数。


三、函数适配器应用实例


(一)、针对成员函数的函数适配器

C++ Code
<nobr>1<br> 2<br> 3<br> 4<br> 5<br> 6<br> 7<br> 8<br> 9<br> 10<br> 11<br> 12<br> 13<br> 14<br> 15<br> 16<br> 17<br> 18<br> 19<br> 20<br> 21<br> 22<br> 23<br> 24<br> 25<br> 26<br> 27<br> 28<br> 29<br> 30<br> 31<br> 32<br> 33<br> 34<br> 35<br> 36<br> 37<br> 38<br> 39<br> 40<br> 41<br> 42<br> 43<br> 44<br> 45<br> 46<br> 47<br> 48<br> 49<br> 50<br></nobr>
#include<iostream>
#include<algorithm>
#include<functional>
#include<vector>
#include<string>

usingnamespacestd;

classPerson
{
public:
Person(conststring&name):name_(name){}
voidPrint()const
{
cout<<name_<<endl;
}
voidPrintWithPrefix(stringprefix)const
{
cout<<prefix<<name_<<endl;
}
private:
stringname_;
};

voidfoo(constvector<Person>&v)
{
for_each(v.begin(),v.end(),mem_fun_ref(&Person::Print));
for_each(v.begin(),v.end(),bind2nd(mem_fun_ref(&Person::PrintWithPrefix),"person:"));
}

voidfoo2(constvector<Person*>&v)
{
for_each(v.begin(),v.end(),mem_fun(&Person::Print));
for_each(v.begin(),v.end(),bind2nd(mem_fun(&Person::PrintWithPrefix),"person:"));
}

intmain(void)
{
vector<Person>v;
v.push_back(Person("tom"));
v.push_back(Person("jerry"));
foo(v);

vector<Person*>v2;
v2.push_back(newPerson("tom"));
v2.push_back(newPerson("jerry"));
foo2(v2);
return0;
}

在foo 函数中,第一行的mem_fun_ref 将空元函数转换为一元函数对象,具体流程大家可以自己跟踪代码,实际上跟上面bind2nd 是类似的,


需要稍微说一下的是传递函数指针的情况:

C++ Code
<nobr>1<br> 2<br> 3<br> 4<br> 5<br> 6<br> 7<br> 8<br> 9<br> 10<br> 11<br> 12<br> 13<br> 14<br> 15<br> 16<br> 17<br> 18<br> 19<br> 20<br> 21<br> 22<br> 23<br> 24<br> 25<br> 26<br> 27<br> 28<br> 29<br> 30<br> 31<br> 32<br></nobr>
template<class_Result,
class_Ty>inline
const_mem_fun_ref_t<_Result,_Ty>
mem_fun_ref(_Result(_Ty::*_Pm)()const)
{
//returnaconst_mem_fun_ref_tfunctoradapter
return(std::const_mem_fun_ref_t<_Result,_Ty>(_Pm));
}

//TEMPLATECLASSconst_mem_fun_ref_t
template<class_Result,
class_Ty>
classconst_mem_fun_ref_t
:publicunary_function<_Ty,_Result>
{
//functoradapter(*left.*pfunc)(),const*pfunc
public:
explicitconst_mem_fun_ref_t(_Result(_Ty::*_Pm)()const)
:_Pmemfun(_Pm)
{
//constructfrompointer
}

_Resultoperator()(const_Ty&_Left)const
{
//callfunction
return((_Left.*_Pmemfun)());
}

private:
_Result(_Ty::*_Pmemfun)()const;//thememberfunctionpointer
};

传入的参数是一个函数指针,也就是void (Person::*_Pm) () const , 传递后 _Pm = &Print,在operator() 函数中


return((_Left.*_Pmemfun)()); _Left 也就是遍历到的Person 类对象,先找到类的函数,然后进行调用。


第二行中mem_fun_ref 接受两个参数,明显是重载的版本,它将一元函数转换为二元函数对象,而bind2nd 再将其转化为一元函数对


象,即绑定了第二个参数为"person: ",跟踪源码可以看见这样的函数调用:

C++ Code
<nobr>1<br> 2<br> 3<br> 4<br> 5<br></nobr>
_Resultoperator()(_Ty&_Left,_Arg_Right)const
{
//callfunctionwithoperand
return((_Left.*_Pmemfun)(_Right));
}

也就是将第二个参数当作参数传递给PrintWithPrefix,所以打印出来的带有前缀person:


而mem_fun 就类似了,只不过此次for_each 遍历得到的是对象指针,所以进行函数调用时需要用-> 操作符,如下所示:

C++ Code
<nobr>1<br> 2<br> 3<br> 4<br> 5<br> 6<br> 7<br> 8<br> 9<br> 10<br> 11<br></nobr>
_Resultoperator()(const_Ty*_Pleft)const
{
//callfunction
return((_Pleft->*_Pmemfun)());
}

_Resultoperator()(const_Ty*_Pleft,_Arg_Right)const
{
//callfunctionwithoperand
return((_Pleft->*_Pmemfun)(_Right));
}

(二)、针对一般函数的函数适配器

例程1:

C++ Code
<nobr>1<br> 2<br> 3<br> 4<br> 5<br> 6<br> 7<br> 8<br> 9<br> 10<br> 11<br> 12<br> 13<br> 14<br> 15<br> 16<br> 17<br> 18<br> 19<br> 20<br></nobr>
#include<iostream>
#include<algorithm>
#include<functional>
#include<vector>
#include<string>

usingnamespacestd;

intmain(void)
{
char*a[]={"","BBB","CCC"};
vector<char*>v(a,a+2);
vector<char*>::iteratorit;
it=find_if(v.begin(),v.end(),bind2nd(ptr_fun(strcmp),""));
if(it!=v.end())
cout<<*it<<endl;

return0;
}

ptr_fun 将strcmp 二元函数转换为二元函数对象,bind2nd 再将其转化为一元函数对象,即绑定了第二个参数,因为strcmp 是在比较


不相等的情况返回为真,故find_if 查找的是第一个不等于空串的串位置。


例程2:

C++ Code
<nobr>1<br> 2<br> 3<br> 4<br> 5<br> 6<br> 7<br> 8<br> 9<br> 10<br> 11<br> 12<br> 13<br> 14<br> 15<br> 16<br> 17<br> 18<br> 19<br> 20<br> 21<br> 22<br> 23<br> 24<br> 25<br></nobr>
#include<iostream>
#include<algorithm>
#include<functional>
#include<vector>
#include<string>

usingnamespacestd;

boolcheck(intelem)
{
returnelem<3;
}

intmain(void)
{
inta[]={1,2,3,4,5};
vector<int>v(a,a+5);

vector<int>::iteratorit;
it=find_if(v.begin(),v.end(),not1(ptr_fun(check)));
if(it!=v.end())
cout<<*it<<endl;
return0;
}

ptr_fun 做了一次转换,not1 再转换一次,故find_if 查找的是第一个大于等于3的元素位置。


这些代码的跟踪就留给大家自己完成了,篇幅所限,不能将所有调用过程都显现出来,学习STL还是得靠大家跟踪源码,才能有更深的体会。


参考:

C++ primer 第四版
Effective C++ 3rd
C++编程规范


分享到:
评论

相关推荐

    stl.zip_STL_matlab stl_patch函数_solid7bi_stl matlab

    综上所述,MATLAB为STL文件的处理提供了丰富的工具,包括`stlread`和`stl_patch`等函数,使得用户能够在控制台环境中方便地实现3D模型的读取、渲染和分析。通过对颜色、光照的调整,可以创建出丰富多彩的3D视图,这...

    每天学点C++(C++实例教程:教程+源码)STL函数对象.zip

    在C++编程语言中,STL(Standard Template Library,标准模板库)是其核心特性之一,它极大地丰富了C++的库功能,提高了程序的效率和可读性。STL包含五大组件:容器、迭代器、算法、函数对象和分配器。本教程将重点...

    STL.rar_C++ STL_STL_site:www.pudn.com_visual c

    在本资料"STL.rar"中,我们重点探讨的是STL在C++中的应用,尤其是与Visual C++的结合使用。 STL的核心组成部分包括容器、迭代器、算法和函数对象。这些组件协同工作,为开发者提供了一种强大的方式来处理各种数据...

    从零开始学C++

    C++是一种强大的、通用的编程语言,被广泛应用于系统软件、应用软件、游戏开发、驱动程序、嵌入式系统等领域。作为一门面向对象的语言,它提供了丰富的特性,包括类、模板、异常处理、多态性等,使得程序员可以构建...

    C++常用stl算法.pdf

    常见的适配器有`bind1st`、`bind2nd`、`not1`、`not2`、`ptr_fun`和`mem_fun`等。这些适配器可以帮助我们固定某些参数或者改变函数的行为。例如,`bind1st`和`bind2nd`可以分别固定函数的第一个和第二个参数,而`not...

    stl.rar_STL_STL源码下载_stl 源码_stl源码_visual c

    STL,全称为Standard Template Library(标准模板库),是C++编程语言中不可或缺的一部分,它提供了高效、可重用的数据结构和算法。STL的主要组件包括容器(如vector、list、set等)、迭代器、算法和函数对象。这些...

    20121018_在成员函数中使用STL的find_if函数1

    C++ 中使用 STL 的 find_if 函数在成员函数中 在 C++ 编程中,STL(Standard Template Library)的 find_if 函数是一个非常强大的工具,可以使用输入的函数替代等于操作符执行查找功能。下面我们将探讨如何在成员...

    STL学习必备:Effective-STL,STL_Programmer_Guider,TheC++StandardLibrary打包下载

    STL,全称为Standard Template Library(标准模板库),是C++编程语言中不可或缺的一部分,它提供了高效的容器、迭代器、算法和函数对象等工具,极大地提高了C++程序员的生产力。在深入探讨STL之前,我们先来了解...

    《C++语言 - 标准模板库STL》_标准模板库_C++_C++STL_

    在C++编程中,标准模板库(Standard Template Library,简称STL)是一个极其重要的组成部分,它为程序员提供了高效且易用的数据结构和算法。STL是C++标准库的一个核心部分,极大地提升了代码的可读性和复用性,使得...

    NX二次开发-UFUN导出STL函数UF_STD_put_solid_in_stl_file博客文章源代码

    在UG/NX软件环境中,二次开发是通过使用其提供的API接口和编程语言,如C++或UFUN(UG/OPEN Macro Function),来扩展或定制功能的过程。本篇将重点讲解如何利用UFUN中的"UF_STD_put_solid_in_stl_file"函数进行STL...

    STL 源码剖析(侯捷先生译著)

    8.4.5 用于成员函数指针:mem_fun, mem_fun_ref 456 附录A 参考资料与推荐读物(Bibliography) 461 附录B 侯捷网站简介 471 附录C STLport 的移植经验(by 孟岩) 473 Borland C++Builder 5 474 Microsoft ...

    C++——STL

    6. 布尔谓词:STL中的谓词函数对象用于比较、测试和选择元素,如`bind1st`、`bind2nd`用于绑定函数对象的第一个或第二个参数,`mem_fun`、`mem_fun_ref`用于调用对象的成员函数。 7. 仿函数:仿函数是一种特殊的...

    SGI_STL源码(附带个人详细)

    6. 适配器函数:如`bind1st`和`bind2nd`,以及`mem_fun`系列,它们用于封装成员函数,使非成员函数可以调用对象的成员方法。 在SGI_STL源码中,你可以看到每个组件的具体实现,例如: - `__alloc`目录包含内存分配...

    stl.rar_C# stl_C++ STL_C++STL_STL_stl source

    STL,全称为Standard Template Library(标准模板库),是C++编程语言中一个重要的组成部分,由亚历山大·斯蒂尔(Alexander Stepanov)和玛格丽特·梅森(Margaret A. Ellis)共同设计。STL提供了一组高效、通用的...

    C++ STL源码剖析(侯捷版本)_C语言_pdf_数据结构_

    《C++ STL源码剖析(侯捷版本)》是一本深度解析C++ Standard Template Library (STL) 的经典著作,作者侯捷是知名的C++专家。这本书主要针对想要深入理解STL工作原理、提高编程技能的C++程序员,通过源码分析,帮助...

    EffectiveSTL_STL_C++_experience_gas841_C++STL_

    《Effective STL》是C++编程领域的一本经典著作,由著名C++专家Scott Meyers撰写。这本书主要聚焦于Standard Template Library(STL)的高效使用,旨在帮助开发者深入理解STL,并提供了一系列实用的编程技巧和最佳...

    C++进阶STL适配器总结1

    例如,`bind1st`和`bind2nd`可以与STL的仿函数(比如`less&lt;int&gt;`)结合,用于计算数组中满足条件的元素个数。同样,取反器如`not1`和`not2`可以将谓词函数的结果取反,用于反转判断条件。 然后是迭代器适配器,它们...

    C++ STL 内 std::{bind/tuple/function} 简单实现

    在C++标准库STL中,`std::bind`、`std::tuple`和`std::function`是三个非常重要的工具,它们各自有着独特的功能,同时也常常协同工作以完成复杂的功能。 1. `std::function`: 这是一个可以存储任何类型的可调用对象...

    c++ STL 库使用示例

    - 自定义仿函数可以扩展功能,如`std::bind1st`和`std::bind2nd`绑定函数的参数,`std::mem_fun`和`std::mem_fun_ref`用于成员函数操作。 5. 动态内存管理: - **allocator**:分配和释放内存的模板类,可以...

Global site tag (gtag.js) - Google Analytics