C++ 函数对象 即仿函数的简单实用

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;


class MyPrint
{
public:
	void operator()( int num)
	{
		cout << "num " << num << endl;
		count++;
	}
	int count = 0;
};

void MyPrint2(int num )
{
	cout << "num " << num << endl;
}

void test01()
{
	//MyPrint是一个类 ,而不是函数
	MyPrint myPrint;
	myPrint(111); 

	//MyPrint2(111);

	MyPrint()(1000);
}
//函数对象超出普通函数概念,内部可以保存状态
void test02()
{
	MyPrint myPrint;
	myPrint(111);
	myPrint(111);
	myPrint(111);
	myPrint(111);

	cout << "myPrint使用次数:" << myPrint.count << endl;

}

//函数对象作为参数
void doPrint(MyPrint print, int num)
{
	print(num);
}
void test03()
{
	doPrint(MyPrint(), 20);


}




int main(){

//	test01();

//	test02();

	test03();

	system("pause");
	return EXIT_SUCCESS;
}

即重载了 ()运算符的类,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值