C++(20):bind_front

C++(11):bind_c++11 bind_风静如云的博客-CSDN博客

提供了方法来绑定函数参数的方法。

C++20提供了bind_front用于简化这个绑定。

#include 
#include 
using namespace std;

void func1(int d1, int d2)
{
    cout<<__func__<<" "<

可以看到bind_front不需要使用placeholders

运行程序输出:

func1 6 8

func1 6 8

你可能感兴趣的:(C/C++,c++)