6

为什么我不能重载这个模板函数?

import std.stdio;

T[] find(T, E)(T[] haystack, E needle)
    if (is(typeof(haystack[0] != needle)))
{
    while(haystack.length > 0 && haystack[0] != needle) {
        haystack = haystack[1 .. $];
    }
    return haystack;
}

// main.d(14): Error: function main.find conflicts with template main.find(T,E) if (is(typeof(haystack[0] != needle))) at main.d(5)
double[] find(double[] haystack, string needle) { return haystack; }

int main(string[] argv)
{
    double[] a = [1,2.0,3];
    writeln(find(a, 2.0));
    writeln(find(a, "2"));
    return 0;
}

据我所知,这两个函数不能接受相同的参数类型。

4

1 回答 1

9

由于错误,您不能使用非模板函数重载模板函数。这应该有望在未来的某个时候得到解决。

同时,您可以将另一个函数编写为模板特化:

T find(T : double[], E : string)(T haystack, E needle)
{
    return haystack;
}
于 2012-06-10T17:48:26.373 回答