标签:cout 关键字 foo pre strong 仿函数 cal 包装 转换
#include<iostream>
#include<functional>
void func(void)
{
std::cout<<__FUNCTION__<<std::endl;
}
class Foo
{
public:
static int foo_func(int a)
{
std::cout<<__FUNCTION__<<"("<<a<<") ->: ";
return a;
}
}
C++11:08std::funcation和std::bind绑定器(没太学好)
标签:cout 关键字 foo pre strong 仿函数 cal 包装 转换
原文地址:https://www.cnblogs.com/fewolflion/p/12787800.html