C ++结构成员模板函数的显式特化 - 这是一个Visual Studio问题吗?

时间:2011-05-21 19:25:07

标签: c++ visual-studio templates

我遇到了模板专业化的问题,归结为以下代码段:

#include <iostream>

struct Class
{
    template <unsigned int N> static void fun(double a[N], double (&x)[N+1]);
};

template <> inline void Class::fun<1u>(double a[1u], double (&x)[2u])
{
    x[0] += 0.2;
}

template <> inline void Class::fun<2u>(double a[2], double (&x)[3])
{
    x[0] += 0.4;
}

int main(void)
{
    double x[1] = {0};
    double a[2] = {0, 1};
    double b[3] = {0, 0, 1};

    Class::fun<1>(x, a);
    Class::fun<2>(a, b);
    std::cout << a[0] << " " << b[0] << std::endl;
    return 0;
}

它在Cygwin g ++ 4.3.4中编译并正常工作,显示0.2 0.4,并在Comeau Online compiler中编译。但是,Visual Studio C ++ 2010 Express提供以下错误消息:

error C2910: 'Class::fun' : cannot be explicitly specialized
error C2910: 'Class::fun' : cannot be explicitly specialized

编辑:当我将函数更改为自由函数时,错误消息更改为

error C2912: explicit specialization; 'void fun<1>(double [],double (&)[2])' is not a specialization of a function template

所以,有两个问题: 1.我的代码是合法的C ++ 2.如果是这样,这是Visual Studio C ++ 2010编译器的已知问题吗?

1 个答案:

答案 0 :(得分:4)

好吧,我说它很可能是合法的c ++代码,因为我编译并运行得很好:

g++ -ansi -gstabs+ -Wall -o fun fun.cpp
g++ -std=c++98 -gstabs+ -Wall -o fun fun.cpp
g++ -std=c++0x -gstabs+ -Wall -o fun fun.cpp

我怀疑这是与此处提到的相同的错误:http://msdn.microsoft.com/en-us/library/cx7k7hcf(v=vs.80).aspx

特别是:

  

如果函数已经通过模板类特化明确专门化,则类外部的成员函数的显式特化无效。 (C2910)。

来自http://msdn.microsoft.com/en-us/library/h62s5036(v=vs.80).aspx