其他分享
首页 > 其他分享> > 如何在C 11/98中跳过参数

如何在C 11/98中跳过参数

作者:互联网

说我有一个功能:

void function() {
    cout << "Hello!" << endl;
}

我有一个算法调用一个函数并传递两个参数:

template <class F>
void my_algorithm(F f) {
    // ...
    f(x, y);
    // ...
}

如何通过操作函数或函数对象将函数传递给my_algorithm,而无需手动创建包装器?作为参考,我不想创建的包装器看起来像这样:

void functionSkipArgs(A a, B b) {
    function();
}

换句话说,我想在以下代码中找到与some_operations对应的函数或函数系列:

my_algorithm(some_operations(&function));

解决方法:

这似乎有效:http://ideone.com/6DgbA6

#include <iostream>
#include <functional>

using namespace std;


void func() {
    cout << "Hello!" << endl;
}

template<class F>
void my_algorithm(F f) {
    int x = 100;
    int y = 200;

    f(x, y);
}


int main() {

    my_algorithm(std::bind(func));

    return 0;
}

标签:c98,c,c11
来源: https://codeday.me/bug/20190724/1527349.html