【发布时间】:2020-01-10 18:23:16
【问题描述】:
我创建了简单的wrapper 来捕获、报告和重新抛出异常(见下文)。它适用于函数、函数指针和 std::function 对象,但由于检查 nullptr 而无法编译 lambda 和仿函数。有没有办法尽可能简单地解决这个问题,以便包装器可以用于任何类型的可调用对象?谢谢!
#include <functional>
template<typename Func, typename TRet, typename... Args>
TRet wrapper(Func func, TRet exit_code_on_error, Args... args) {
TRet exit_code = exit_code_on_error;
//if (func) // this condition does not compile for lambdas and functors
{
try {
exit_code = func(std::forward<Args>(args)...);
} catch(...) {
// report and possibly rethrow
//throw;
}
}
return exit_code;
}
int test1(double d) {
return (int)d;
}
int test2(std::function<int (double)> f, double d) {
return f(d);
}
struct TestFunctor {
int operator()(double d) {
return (int)d;
}
};
int main() {
// OK:
wrapper(test1, 1, 2.3);
wrapper(&test1, 1, 2.3);
auto p = test1;
wrapper(p, 1, 2.3);
p = nullptr;
wrapper(p, 1, 2.3);
wrapper(test2, 1, test1, 2.3);
// These lines cause the troubles:
wrapper([](double d){ return (int)d; }, 1, 2.3);
wrapper(TestFunctor(), 1, 2.3);
}
错误:
wrapper.hpp: error C2451: conditional expression of type 'Func' is illegal
with
[
Func=main::<lambda_1>
]
【问题讨论】: