我想了解为什么会失败:
template <class T, class U>
T apply(U stuff, std::function<T (U)> function) { return function(stuff); }
(这当然不是真正的代码)。
在 g++-4.8 上,我得到“模板参数 1 无效”。
谢谢 !
编辑:彻底的例子:基本上,我想做的是为MapFunction
andReductionFunction
类型强制执行特定的原型。
我想:
- MapFunction : typeof(*InputIterator) -> T
- 减少函数:(T,T)-> T
代码:
template <class T, class InputIterator, class ReductionFunction>
T mapReduce_n(InputIterator in,
unsigned int size,
T baseval,
std::function<T (decltype(*InputIterator))> map,
ReductionFunction reduce)
{
T val = baseval;
#pragma omp parallel
{
T map_val = baseval;
#pragma omp for nowait
for (auto i = 0U; i < size; ++i)
{
map_val = reduce(map_val, map(*(in + i)));
}
#pragma omp critical
val = reduce(val, map_val);
}
return val;
}
编辑 2:
我认为那std::function<T (decltype(*InputIterator))> map
部分是错误的,应该是:
std::function<T (decltype(*in))> map
。
然而,这失败了:
mismatched types 'std::function<T(decltype (* in))>' and 'double (*)(std::complex<double>)'
我还尝试了迭代器特征:
std::function<T (std::iterator_traits<InputIterator>::value_type)> map
但它失败了:
type/value mismatch at argument 1 in template parameter list for
'template<class _Signature> class std::function'
error: expected a type, got '(T)(std::iterator_traits<_II>::value_type)'
第三次编辑:
另一个试验,我想我开始接近了!
std::function<T (typename std::iterator_traits<InputIterator>::value_type)> map
失败:
mismatched types
'std::function<T (typename std::iterator_traits<_II>::value_type)>'
and
'double (*)(std::complex<double>)'
这是我的电话:
MathUtil::mapReduce_n(
in, // const std::complex<double> * const
conf.spectrumSize(), // unsigned int
0.0,
MathUtil::CplxToPower, // double CplxToPower(const std::complex<double> val);
std::plus<double>())