ptr_fun Function
帮助器使用的模板函数转换为元和二进制函数指针,分别,转换为元和二进制可靠的功能。
template<class Arg, class Result>
pointer_to_unary_function<Arg, Result, Result (*)(Arg)>
ptr_fun(Result (*_pfunc)(Arg));
template<class Arg1, class Arg2, class Result>
pointer_to_binary_function<Arg1, Arg2, Result, Result (*)(Arg1, Arg2)>
ptr_fun(Result (*_pfunc)(Arg1, Arg2));
参数
- _pfunc
要转换的一元或二进制函数指针转换为灵活的功能。
返回值
第一个模板函数返回一元"功能 pointer_to_unary_function <Arg,结果> (*_pfunc)。
第二个模板函数返回二进制功能 pointer_to_binary_function <Arg1,Arg2,结果> (*_pfunc)。
备注
函数指针是函数对象,并且可能传递到需要一个函数作为参数的所有标准模板库算法,但是,它不是灵活的。 若要将它与一个适配器,例如将值赋给它或将其与否定,必须为其提供使这将成为可能的嵌套类型。 一元和二进制函数指针转换。ptr_fun helper 函数的函数允许适配器使用一元和二进制函数指针一起使用。
示例
// functional_ptr_fun.cpp
// compile with: /EHsc
#include <vector>
#include <algorithm>
#include <functional>
#include <cstring>
#include <iostream>
int main( )
{
using namespace std;
vector <char*> v1;
vector <char*>::iterator Iter1, RIter;
v1.push_back ( "Open" );
v1.push_back ( "up" );
v1.push_back ( "the" );
v1.push_back ( "opalescent" );
v1.push_back ( "gates" );
cout << "Original sequence contains: " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; ++Iter1 )
cout << *Iter1 << " ";
cout << endl;
// To search the sequence for "opalescent"
// use a pointer_to_function conversion
RIter = find_if( v1.begin( ), v1.end( ),
not1 ( bind2nd (ptr_fun ( strcmp ), "opalescent" ) ) );
if ( RIter != v1.end( ) )
{
cout << "Found a match: "
<< *RIter << endl;
}
}
Output
Original sequence contains: Open up the opalescent gates
Found a match: opalescent
要求
标头: <functional>
命名空间: std