ptr_fun
转自:http://www.cplusplus.com/reference/std/functional/ptr_fun/
template <class Arg, class Result>
pointer_to_unary_function<Arg,Result> ptr_fun (Result (*f)(Arg)); template <class Arg1, class Arg2, class Result>
pointer_to_binary_function<Arg1,Arg2,Result> ptr_fun (Result (*f)(Arg1,Arg2));
Returns a function object that encapsulates function f.
Function objects are objects whose class defines member function operator(). This member function allows the object to be used with the same syntax as a regular function call. Several standard algorithms and adaptors are designed to be used with function objects.
It is defined with the same behavior as:
- template <class Arg, class Result>
- pointer_to_unary_function<Arg,Result> ptr_fun (Result (*f)(Arg))
- {
- return pointer_to_unary_function<Arg,Result>(f);
- }
- template <class Arg1, class Arg2, class Result>
- pointer_to_binary_function<Arg1,Arg2,Result> ptr_fun (Result (*f)(Arg1,Arg2))
- {
- return pointer_to_binary_function<Arg1,Arg2,Result>(f);
- }
Template parameters
- Arg, Arg1, Arg2
- Types of the function's arguments.
- Result
- Function's return type.
Parameters
- f
- Pointer to a function, taking either one argument (of type Arg) or two arguments (of types Arg1 and Arg2) and returning a value of type Result.
Return value
A function object equivalent to f.
pointer_to_unary_function and pointer_to_binary_function are function object types, derived respectively fromunary_function and binary_function.
Example
- // ptr_fun example
- #include <iostream>
- #include <functional>
- #include <algorithm>
- #include <cstdlib>
- #include <numeric>
- using namespace std;
- int main () {
- char* foo[] = {"10","20","30","40","50"};
- int bar[5];
- int sum;
- transform (foo, foo+5, bar, ptr_fun(atoi) );
- sum = accumulate (bar, bar+5, 0);
- cout << "sum = " << sum << endl;
- return 0;
- }
Possible output:
- sum = 150
ptr_fun使用
转自:http://topic.csdn.net/u/20100112/16/e1973c74-d81c-4e49-bef8-128ab836800b.html
- // ceshi1.cpp : 定义控制台应用程序的入口点。
- //
- #include "stdafx.h"
- #include <iostream>
- #include <functional>
- using std::cout;
- using std::endl;
- /*
- binary_function
- */
- template<typename Arg1,typename Arg2,typename Ret>
- class binary_function{
- public:
- typedef Arg1 first_argument_type;
- typedef Arg2 second_argument_type;
- typedef Ret return_type;
- };
- /*
- pointer_to_binary_function
- */
- template<typename Arg1,typename Arg2,typename Ret>
- class pointer_to_binary_function:public binary_function<Arg1,Arg2,Ret>{
- private:
- Ret (*pmf)(Arg1,Arg2);
- public:
- explicit pointer_to_binary_function(Ret (*pmf_)(Arg1,Arg2))
- :pmf(pmf_){
- }
- Ret operator()(Arg1 left,Arg2 right){
- return pmf(left,right);
- }
- };
- /*
- ptr_fun
- */
- template<typename Arg1,typename Arg2,typename Ret>
- pointer_to_binary_function<Arg1,Arg2,Ret> ptr_fun(Ret (*pf)(Arg1,Arg2)){
- return pointer_to_binary_function<Arg1,Arg2,Ret>(pf);
- }
- /*
- test_function
- */
- void test_function(int a,int b){
- cout<<"Arg1 is "<<a<<endl;
- cout<<"Arg2 is "<<b<<endl;
- }
- /*
- main
- */
- int main(int argc,char* argv[]){
- int a=3;
- int b=30;
- (pointer_to_binary_function<int,int,void>(test_function))(a,b);
- return 0;
- }
ptr_fun的更多相关文章
- 函数对象适配器之ptr_fun的使用示例
//============================================================================ // Name : CopyInts4.c ...
- 关于标准库中的ptr_fun/binary_function/bind1st/bind2nd
http://www.cnblogs.com/shootingstars/archive/2008/11/14/860042.html 以前使用bind1st以及bind2nd很少,后来发现这两个函数 ...
- ptr_fun学习笔记
ptr_fun是将一个普通的函数适配成一个functor,添加上argument type和result type等类型, 其实现如下(例子里面是binary_function,unary_funct ...
- 【转】三十分钟掌握STL
转自http://net.pku.edu.cn/~yhf/UsingSTL.htm 三十分钟掌握STL 这是本小人书.原名是<using stl>,不知道是谁写的.不过我倒觉得很有趣,所以 ...
- Bjarne Stroustrup对C++程序员的忠告
转自:http://blog.csdn.net/adm_qxx/archive/2007/05/20/1617488.aspx 第1章 致读者 [1] 在编写程序时,你是在为你针对某个问题的解决方 ...
- for_each使用方法详解[转]
for_each使用方法详解[转] Abstract之前在(原創) 如何使用for_each() algorithm? (C/C++) (STL)曾經討論過for_each(),不過當時功力尚淺,只談 ...
- c++模板库(简介)
目 录 STL 简介 ......................................................................................... ...
- 三十分钟掌握STL
这是本小人书.原名是<using stl>,不知道是谁写的.不过我倒觉得很有趣,所以化了两个晚上把它翻译出来.我没有对翻译出来的内容校验过.如果你没法在三十分钟内觉得有所收获,那么赶紧扔了 ...
- Effective STL
第9条:慎重选择删除元素的方法 删除特定值元素,vector.string.deque用erase-remove:c.erase(remove(c.begin(),c.end(),1963),c.en ...
随机推荐
- gulp构建例子(ubuntu)
1.项目结构和生产之后的目录 2.gulpfile.js // 载入插件 var gulp = require('gulp'), //本地安装gulp所用到的地 sass = require('gul ...
- LeetCode——Median of Two Sorted Arrays
Question There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median o ...
- Docker Mysql主从同步配置搭建Demo
进行Docker操作前,先建立目录,我的路径是d:/docker/mysql,目录结构如下: --mysql --master --data --conf --my.cnf --slaver --da ...
- Gym100783C Golf Bot(FFT)
https://vjudge.net/problem/Gym-100783C 题意: 给出n个数,然后有m次查询,每次输入一个数x,问x能否由n个数中2个及2个以下的数相加组成. 思路:题意很简单,但 ...
- Linux内核、 TCP/IP、Socket参数调优
/proc/sys/net目录 所有的TCP/IP参数都位于/proc/sys/net目录下(请注意,对/proc/sys/net目录下内容的修改都是临时的,任何修改在系统重启后都会丢失),例如下面这 ...
- Oracle函数中文转拼音(首字母)
CREATE OR REPLACE FUNCTION FUN_GET_PYCODE(p_str IN VARCHAR2, p_flag NUMBER DEFAULT NULL) RETURN VARC ...
- ThinkPHP开发笔记-控制器
1.下面就是一个典型的控制器类的定义: <?php namespace Home\Controller; use Think\Controller; class IndexController ...
- Base64压缩UUID长度替换Hibernate原有UUID生成器
本文来自http://my.oschina.net/noahxiao/blog/132277,个人储藏使用 1.背景 在采用Hibernate做对象映射时,我一直都采用UUID来做主键.由于Hiber ...
- [javascript]jquery选择器笔记
技术文档 中文:http://jquery.cuishifeng.cn/ 英文:http://api.jquery.com/category/selectors/ 分类 基本选择器 层次选择器 过滤选 ...
- ubuntu16.04 安装以及要做的事情
1.安装ubuntu 选择安装时更新,以及MP3.图形等:然后选择分区(ext4)(安装时需先进入虚拟系统连上网,输入清华net账号),分区情况按照下图来,swap为临时用的内存分区,可以不要: 选择 ...