模板专业化:不是模板

时间:2013-07-27 07:08:00

标签: c++ templates template-specialization

任何人都可以帮助我理解为什么会出现以下错误吗?

  

'vcr'不是模板

这是模板类声明:

#include <iostream>
#include <complex>

using namespace std;

template<class T>
class vcr<complex <T> >
{
  int length;
  complex<T>* vr;
public:
  vcr(int, const complex<T>* const);
  vcr(int =0, complex<T> =0);
  vcr(const vcr&);
  ~vcr() {delete[] vr;}
  int size() const{ return length;}
  complex<T>& operator[](int i) const { return vr[i];}
  vcr& operator+=(const vcr&);
  T maxnorm() const;
  template<class S>
  friend complex<S> dot(const vcr<complex<S> >&, const vcr<complex<S> >&);
};

1 个答案:

答案 0 :(得分:3)

template<class T> class vcr<complex <T> >{

...是部分模板专业化。有一个缺少的一般变体,它(至少)看起来像这样,并且必须在部分特化点处可见:

template<class T> class vcr;

您不需要 为常规表单提供正文。