gpt4 book ai didi

C++ 可变参数模板 std::function 到 lambda 的转换不起作用

转载 作者:搜寻专家 更新时间:2023-10-31 01:04:22 26 4
gpt4 key购买 nike

<分区>

我有以下代码(简化):

#include <functional>
template <typename... Args> void Callback(std::function<void(Args...)> f){
// store f and call later
}
int main(){
Callback<int, float>([](int a, float b){
// do something
});
}

这样做的目的是获取一些额外的参数、发送数据包、处理响应并使用结果调用 lambda问题是,它不接受 lambda。

# g++ -std=c++11 test.cpp
test.cpp: In function ‘int main()’:
test.cpp:8:3: error: no matching function for call to ‘Callback(main()::<lambda(int, float)>)’
test.cpp:8:3: note: candidate is:
test.cpp:2:34: note: template<class ... Args> void Callback(std::function<void(Args ...)>)
test.cpp:2:34: note: template argument deduction/substitution failed:
test.cpp:8:3: note: ‘main()::<lambda(int, float)>’ is not derived from ‘std::function<void(Args ...)>’

有没有什么方法可以让它工作而无需经历将 lambda 显式包装在 std::function 中的麻烦?

Callback(std::function<void(int, float)>([](int a, float b){
// do something
}));

即使省略回调模板参数(如此处所示)也能完美运行。不过仍然有“额外”的 std::function。

为什么它不能自己算出转换?它适用于非模板:

void B(std::function<void(int, float)> f){/* ... */};
int main(){
B([](int a, float b){
// do something
});
}

作为引用,我正在使用

gcc version 4.7.2 (Debian 4.7.2-5)

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com