STL 函数 / 提升函数类型定义错误

STL function / Boost function typedef errors

本文关键字:函数 定义 错误 类型 STL      更新时间:2023-10-16

我正在尝试弄清楚如何根据我正在编译它的平台在 boost 函数和 c++11 函数之间切换。我知道 c++ 没有模板别名(pre-c++11),所以我写了以下内容,但我无法理解错误消息或为什么它不起作用:

#define FUNCTION_Boost
#if defined(FUNCTION_Boost)
   #include <boost/function.hpp>
#elif defined(FUNCTION_STL)
   #include <functional>
#endif
template<typename Res, typename... ArgTypes>
struct function {
   #if defined(FUNCTION_Boost)
   typedef boost::function<Res(ArgTypes...)> type;
   #elif defined(FUNCTION_STL)
   typedef std::function<Res(ArgTypes...)> type;
   #endif
};
// In instantiation of ‘function<void()>’:
// error: function returning a function
void foo(function<void ()>::type f) {
   f();
}
// this works fine
void bar(boost::function<void ()> f) {
   f();
}
无需

再定义一个function...一切都可以使用using ;)来完成

#define USE_BOOST_FUNCTION
#ifdef USE_BOOST_FUNCTION
# include <boost/function.hpp>
# define FUNCTION_NS boost
# else
#  include <functional>
# define FUNCTION_NS std
# endif
#include <iostream>
namespace test {
using FUNCTION_NS::function;
}
int main()
{
    test::function<void()> f = [](){ std::cout << __PRETTY_FUNCTION__ << std::endl; };
    f();
    return 0;
}

我的印象是这段代码没有做你认为它做的事情:

 typename function<void ()>::type

绑定"void ()"作为 Res 只是创建一个返回函数的函数。

怎么样:

...
void foo(typename function<void >::type f) {
   f();
}
...

你可以得到类似于你试图通过boost::type_traits和boost::type_traits::function_traits获得的别名。也就是说,我怀疑如果你想要一个简单而可移植的解决方案,那么最简单的方法是使用 boost 并等待更好的时间与 C++ 编译器和 C++11 的 STL 支持。