我遇到了boost :: function以及模板函数的问题。方案如下;
我想在另一个名为“setter”的函数中运行一个函数。我的功能就像
data.totalSize(TotalSize);
totalSize函数输入参数的类型是“uint32_t”,输出参数的类型是“void”。
所以我决定使用boost :: function;以下是我的代码:
setter(boost::bind(&myIDL::payload::totalSize,boost::ref(data),_1),(TotalSize));
并且setter实现是
template<typename Outer>
inline void setter(boost::function<void(Outer)> myFunc, Outer myValue)
{
myFunc(myValue);
}
我将收到以下编译错误:
error: no matching function for call to setter(boost::_bi::bind_t<void, boost::_mfi::mf1<void,myIDL::payload, unsigned int>, boost::_bi::list2<boost::reference_wrapper<myIDL::payload>, boost::arg<1> > >, quint32&)'
似乎boost :: function无法理解我的模板类型。所以我决定写下面的内容:
template<typename Outer>
inline void setter(boost::function<void(unit32_t)> myFunc, Outer myValue)
{
myFunc(myValue);
}
它有效!所以我想知道如何解决我的问题。提前感谢您的帮助。
最诚挚的问候, 礼
答案 0 :(得分:2)
模板参数类型扣除仅推导类型,它不考虑任何转换。
就像编译器没有通知你一样,boost::bind
的结果会产生一些不可言喻类型的prvalue:
boost::_bi::bind_t<void, boost::_mfi::mf1<void,myIDL::payload
, unsigned int>
, boost::_bi::list2<boost::reference_wrapper<myIDL::payload>
, boost::arg<1> > >
,显然,与:
不同boost::function<void(Outer)>
也就是说,不能从参数表达式的类型推导出类型模板参数Outer
。解决方案是接受任何函数对象:
template <typename F, typename Outer>
inline void setter(F myFunc, Outer myValue)
{
myFunc(myValue);
}
或将Outer
置于非推断的上下文中(并支付类型擦除的代价):
#include <boost/mpl/identity.hpp>
inline void setter(boost::function<void(typename boost::mpl::identity<Outer>::type)> myFunc
, Outer myValue)
{
myFunc(myValue);
}