明确的模板专业化

时间:2012-01-22 13:53:01

标签: c++ templates template-specialization explicit

我讨厌提出这样一个普遍的问题,但下面的代码是显式模板特化的练习。我一直收到错误:

  

c:\ users \ *** \ documents \ visual studio 2010 \ projects \ template array \ template array \ array.h(49):error C2910:'Array :: {ctor}':无法显式专门化< / p>

#ifndef ARRAY_H
#define ARRAY_H

template <typename t>`
class Array
{
public:
Array(int);

int getSize()
{
    return size;
}
void setSize(int s)
{
    size = s;
}
void setArray(int place, t value)
{
    myArray[place] = value;
}
t getArray(int place)
{
    return myArray[place];
}
private:
    int size;
    t *myArray;
};

template<typename t>
Array<t>::Array(int s=10)
{
    setSize(s);
    myArray = new t[getSize()];
}

template<>
class Array<float>
{
public:
    Array();
 };

template<>
Array<float>::Array()
{
    cout<<"Error";
} 

#endif

由于

1 个答案:

答案 0 :(得分:5)

专业化构造函数的实现不是模板!也就是说,你只想写:

Array<float>::Array()
{
    std::cout << "Error";
}

实际上,您似乎希望限制使用'Array'类模板不与'float'一起使用,在这种情况下,您可能只想声明而不是定义您的专业化,将运行时错误转换为编译时错误:

template <> class Array<float>;

当然,如何防止类的实例化有很多变化。但是,创建运行时错误似乎是最糟糕的选择。