当前位置:  开发笔记 > 编程语言 > 正文

c ++ 14用于函数绑定的Variadic lambda捕获

如何解决《c++14用于函数绑定的Variadiclambda捕获》经验,为你挑选了1个好方法。

我目前正在阅读一些书籍以了解c ++ 14的功能.我试图使用可变参数模板将参数绑定到函数.我知道如何使用std :: bind执行此操作,但我还想使用c ++ 14 lambda表达式实现此函数,仅用于常识和理解,以及任何可能的性能优势.我已经读过lambdas可以内联而std :: bind不能内联,因为它是通过调用函数指针来实现的.

以下是myFunctions.h的代码:

#include 

int simpleAdd(int x, int y) {
    return x + y;
}

//function signatures
template
decltype(auto) funcBind(Func&& func, Args&&...args);

template
decltype(auto) funcLambda(Func&& func, Args&&...args);

/////////////////////////////////////////////////////////////////

//function definitions
template
inline decltype(auto) funcBind(Func&& func, Args&&... args)
{
    return bind(forward(func), forward(args)...);
}

template
inline decltype(auto) funcLambda(Func && func, Args && ...args)
{   //The error is caused by the lambda below:
    return [func, args...]() {
        forward(func)(forward(args)...);
    };
}

这是我正在运行的主要代码:

#include
#include
#include "myFunctions.h"
using namespace std;


int main()
{
    cout << "Application start" << endl;
    cout << simpleAdd(5,7) << endl;

    auto f1 = funcBind(simpleAdd,3, 4);
    cout << f1() << endl;

    //error is occurring below
    auto f2 = funcLambda(simpleAdd, 10, -2);
    cout << f2() << endl;

    cout << "Application complete" << endl;

错误C2665'std :: forward':2个重载中没有一个可以转换所有参数类型

错误C2198'int(__ cdecl&)(int,int)':调用的参数太少

我认为当可变参数转发到lambda时可能会发生错误,但我不太确定.

我的问题是如何正确地制定这个代码,以便我可以使用lambda来捕获函数及其参数,并在以后调用它.



1> T.C...:

我已经读过lambdas可以内联而std :: bind不能内联,因为它是通过调用函数指针来实现的.

如果你传递simpleAdd给然后绑定参数的东西,那么你是否使用bind并不重要.你觉得lambda有func什么用?这是一个函数指针.

lambda-vs-function-pointer案例是关于写作bind(simpleAdd, 2, 3)[] { return simpleAdd(2, 3); }.或结合的λ状[](auto&&...args) -> decltype(auto) { return simpleAdd(decltype(args)(args)...); }与结合simpleAdd直接(将使用函数指针).


无论如何,实施它是非常棘手的.你不能使用by-reference capture,因为事情很容易晃来晃去,你不能使用简单的按值捕获,因为即使是rvalues也会复制参数,你不能在init中进行包扩展-捕获.

这遵循了std::bind语义(调用函数对象并将所有绑定参数作为左值传递),除了1)它不处理占位符或嵌套绑定,以及2)函数调用运算符总是const:

template
inline decltype(auto) funcLambda(Func && func, Args && ...args)
{   
    return [func = std::forward(func), 
            args = std::make_tuple(std::forward(args)...)] {
        return std::experimental::apply(func, args);
    };
}

cppreference有一个实现std::experimental::apply.

请注意,这并解开reference_wrapperS,喜欢bind,因为make_tuple做的.

你的原始代码崩溃了,因为argsconst位于lambda的函数调用操作符(const默认情况下),forward最终试图抛弃constness.

推荐阅读
手机用户2402852387
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有