我是靠谱客的博主 迷人香烟,最近开发中收集的这篇文章主要介绍C++11:function的使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <iostream>
#include <functional>

//1、普通函数
void func()
{
	std::cout << __func__ << std::endl;
}

//2、类中的静态函数
class Test
{
public:
	static int test_func(int a)
	{
		std::cout << __func__ << "(" << a << ") -> ";
		return a;
	}
};

//3、类中的仿函数
class MyFunctor
{
public:
	int operator () (int a)
	{
		std::cout << __func__ << "(" << a << ") ->";
		return a;
	}
};

int main()
{
	//1、绑定普通函数
	std::function<void()> f1 = func;
	f1();

	//2、绑定类中的静态函数
	std::function<int(int)> f2 = Test::test_func;
	std::cout << f2(10) << std::endl;

	//3、绑定类中的仿函数,绑定对象,仿函数调用obj()
	MyFunctor obj;
	std::function<int(int)> f3 = obj;
	std::cout << f3(20) << std::endl;


	system("pause");
	return 0;
}

 

最后

以上就是迷人香烟为你收集整理的C++11:function的使用的全部内容,希望文章能够帮你解决C++11:function的使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部