自己为了理解Functor写的一个例子

// functortest.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <stdio.h>
#include <conio.h>

template<typename T1, typename T2>
class unary_function
{
public:
 typedef T1 first_argument_type;
 typedef T2 result_type;
};

template<typename T>
struct unary_predicate : public unary_function<T, bool>
{
};

struct greater : public unary_predicate<int>
{
 int _val;
 
 greater(int val) :_val(val){}

 inline bool operator()(int val)
 {
  return val > _val;
 }
};

template<typename T, typename Comp>
bool test(T val, Comp comp)
{
 //Comp::result_type ret;
 //ret = comp(val);
 return comp(val);
}

bool _greater(int val)
{
 return val > 10;
}

int main(int argc, char* argv[])
{
 
 std::cout << "test(5, greater(10)) return: " << test(5, greater(10)) << std::endl;
 std::cout << "test(11, greater(10)) return: " << test(11, greater(10)) << std::endl;
 std::cout << "test(5, _greater) return: "  << test(5, _greater) << std::endl;
 std::cout << "test(11, _greater) return: "  << test(11, _greater) << std::endl;
 std::cout << "test(5, greater(1)) return: " << test(5, greater(1)) << std::endl;
 
 getch();
 return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值