0

我正在尝试创建一个重载方法,其中两者都是模板化的。一个需要 4 个参数,一个需要 5 个参数。但是我得到了一个错误

Error C2780 ... OutOfPlaceReturn ... : expects 4 arguments - 5 provided.

... A bunch of template parameters ...

See declaration of ' ... ::OutOfPlaceReturn'

它引用了 4 参数方法定义的行

在这种情况下,我试图用 5 个参数调用重载,所以我不明白为什么编译器认为我想调用只需要 4 个参数的函数。

完整的上下文太复杂了,无法给出完整的代码示例,但只要说这一切都发生在一个类模板中就足够了,它有很多本地typedefs,包括samp_type, const_samp,samp_vec等。这些都是模板参数的类型定义持有 POD 类型或std::array其中一种 POD 类型

typedef int_fast16_t                                fast_int;
typedef typename std::add_const< fast_int >::type   const_fast_int;

typedef samp_type (*func_type)(const_samp, const_samp);

template<func_type operation, const_fast_int strideA, const_fast_int strideB, const_fast_int strideOut>
static inline samp_vec OutOfPlaceReturn(const std::array<samp_type, strideA * vectorLen> &a,
                                        const_fast_int strideA,
                                        const std::array<samp_type, strideB * vectorLen> &b,
                                        const_fast_int strideB,
                                        const_fast_int strideOut)
{
    std::array<samp_type, vectorLen * strideOut> output;
    for(fast_int i = 0; i < vectorLen; ++i)
        output[i * strideOut] = operation(a[i * strideA], b[i * strideB]);
    return output;
}
template<func_type operation, const_fast_int strideA, const_fast_int strideOut>
static inline samp_vec OutOfPlaceReturn(const std::array<samp_type, strideA * vectorLen> &a,
                                        const_fast_int strideA,
                                        const_samp_ref b,
                                        const_fast_int strideOut)
{
    std::array<samp_type, vectorLen * strideOut> output;
    for(fast_int i = 0; i < vectorLen; ++i)
        output[i * strideOut] = operation(a[i * strideA], b);
    return output;
}

如果我理解正确,调用模板函数时,不需要提供编译器可以通过函数参数推导出的模板参数,所以调用看起来像这样

static samp_vec subtract(const_vec_ref a, const_fast_int strideA, const_vec_ref b, const_fast_int strideB, const_fast_int strideOut)
{   return OutOfPlaceReturn<MathClass::subtract>(a, strideA, b, strideB, strideOut);    }

那么,我调用这些模板方法的方式有问题吗?我期望编译器解决重载的方式有问题吗?

编辑

我正在使用VS2010。到目前为止,模板和 C++11 数据类型都非常好。不确定我的编译器是否表现不佳

4

1 回答 1

1

仅对可以实例化的模板进行重载解析。这就是为什么SFINAE有效的一部分。

在您的情况下,您的 5 arg 重载具有模棱两可的strideOut. 那是模板参数吗?

于 2014-02-10T12:53:07.727 回答