参考:https://www.cnb
logs.com/bencai/p/9124654.html
使用g++ -std=c++11 some.cpp 编译
c++的
helloworld
class="c++" name="code">
#include <iostream>
using namespace std;
int main(int argc,char **argv)
{
cout<<"hello world!"<<endl;
auto i=10;
cout<<i<<endl;
return 0;
}
function的用法
注意使用
头文件<functional>
#include <iostream>
#include <functional>
using namespace std;
void printA(int a)
{
cout << a << endl;
}
int main()
{
std::function<void(int a)> func;
func = printA;
func(2); //2
printf("Hello world");
puts("Hello world");
cout << "Hello world" << endl;
return 0;
}
lambda
#include <iostream>
#include <functional>
using namespace std;
void printA(int a)
{
cout << a << endl;
}
int main()
{
std::function<void()> func_1 = [](){cout << "hello world lamda" << endl;};
func_1(); //hello world
cout << "Hello world" << endl;
return 0;
}
代替对象的成员函数,成员函数需要是public
#include <iostream>
#include <functional>
using namespace std;
class Foo{
public:
Foo(int num) : num_(num){}
void print_add(int i) const {cout << num_ + i << endl;}
int num_;
};
int main()
{
std::function<void(const Foo&,int)> f_add_display = &Foo::print_add;
Foo foo(2);
f_add_display(foo,1);
cout << "Hello world" << endl;
return 0;
}
结合bind的
例子
placeholders的概念
关于bind的用法:
可将bind函数看作是一个通用的函数适配器,它接受一个可调用对象,生成一个新的可调用对象来“适应”原对象的参数列表。
调用bind的一般形式:auto newCallable = bind(callable,arg_list);
#include <iostream>
#include <functional>
using namespace std;
class A
{
public:
void fun_3(int k,int m)
{
cout<<k<<" "<<m<<endl;
}
};
void fun(int x,int y,int z)
{
cout<<x<<" "<<y<<" "<<z<<endl;
}
void fun_2(int &a,int &b)
{
a++;
b++;
cout<<a<<" "<<b<<endl;
}
int main(int argc, const char * argv[])
{
//f1的类型为 function<void(int, int, int)>
auto f1 = std::bind(fun,1,2,3); //表示绑定函数 fun 的第一,二,三个参数值为: 1 2 3
f1(); //print:1 2 3
auto f2 = std::bind(fun, placeholders::_1,placeholders::_2,3);
//表示绑定函数 fun 的第三个参数为 3,而fun 的第一,二个参数分别由调用 f2 的第一,二个参数指定
f2(1,2);//print:1 2 3
auto f3 = std::bind(fun,placeholders::_2,placeholders::_1,3);
//表示绑定函数 fun 的第三个参数为 3,而fun 的第一,二个参数分别由调用 f3 的第二,一个参数指定
//注意: f2 和 f3 的区别。
f3(1,2);//print:2 1 3
int n = 2;
int m = 3;
auto f4 = std::bind(fun_2, n,placeholders::_1); //表示绑定fun_2的第一个参数为n, fun_2的第二个参数由调用f4的第一个参数(_1)指定。
f4(m); //print:3 4
cout<<m<<endl;//print:4 说明:bind对于不事先绑定的参数,通过std::placeholders传递的参数是通过引用传递的,如m
cout<<n<<endl;//print:2 说明:bind对于预先绑定的函数参数是通过值传递的,如n
A a;
//f5的类型为 function<void(int, int)>
auto f5 = std::bind(&A::fun_3, a,placeholders::_1,placeholders::_2); //使用auto关键字
f5(10,20);//调用a.fun_3(10,20),print:10 20
std::function<void(int,int)> fc = std::bind(&A::fun_3, a,std::placeholders::_1,std::placeholders::_2);
fc(10,20);//调用a.fun_3(10,20) print:10 20
return 0;
}