42

以下代码:

template <typename S, typename T>
struct foo {
   void bar();
};

template <typename T>
void foo <int, T>::bar() {
}

给我错误

invalid use of incomplete type 'struct foo<int, T>'
declaration of 'struct foo<int, T>'

(我正在使用 gcc。)我的部分专业化语法是否错误?请注意,如果我删除第二个参数:

template <typename S>
struct foo {
   void bar();
};

template <>
void foo <int>::bar() {
}

然后它可以正确编译。

4

5 回答 5

46

你不能部分专门化一个函数。如果您希望在成员函数上这样做,则必须部分专门化整个模板(是的,这很烦人)。在大型模板类中,要部分专门化一个函数,您需要一种解决方法。也许模板化的成员结构(例如template <typename U = T> struct Nested)会起作用。或者,您可以尝试从另一个部分专业化的模板派生(如果您使用该this->member表示法,则可以使用,否则您将遇到编译器错误)。

于 2008-10-03T00:05:53.807 回答
8

虽然 coppro 已经提到了两个解决方案,并且 Anonymous 解释了第二个,但我花了很长时间才理解第一个。也许下面的代码对偶然发现这个网站的人有帮助,这个网站在谷歌中仍然排名很高,比如我。该示例(将 numericT 的向量/数组/单个元素作为 dataT 传递,然后通过 [] 或直接访问它)当然有些人为,但应该说明您实际上如何非常接近通过包装成员函数来部分特化它在部分专业课上。

/* The following circumvents the impossible partial specialization of 
a member function 
actualClass<dataT,numericalT,1>::access
as well as the non-nonsensical full specialisation of the possibly
very big actualClass. */

//helper:
template <typename dataT, typename numericalT, unsigned int dataDim>
class specialised{
public:
  numericalT& access(dataT& x, const unsigned int index){return x[index];}
};

//partial specialisation:
template <typename dataT, typename numericalT>
class specialised<dataT,numericalT,1>{
public:
  numericalT& access(dataT& x, const unsigned int index){return x;}
};

//your actual class:
template <typename dataT, typename numericalT, unsigned int dataDim>
class actualClass{
private:
  dataT x;
  specialised<dataT,numericalT,dataDim> accessor;
public:
  //... for(int i=0;i<dataDim;++i) ...accessor.access(x,i) ...
};
于 2014-05-19T13:05:11.567 回答
5

如果您需要部分专门化构造函数,您可以尝试以下操作:

template <class T, int N>
struct thingBase
{
    //Data members and other stuff.
};

template <class T, int N> struct thing : thingBase<T, N> {};

template <class T> struct thing<T, 42> : thingBase<T, 42>
{
    thing(T * param1, wchar_t * param2)
    {
        //Special construction if N equals 42.
    }
};

注意:这是从我正在处理的事情中匿名的。当您有一个包含大量成员的模板类并且您只想添加一个函数时,您也可以使用它。

于 2011-06-04T19:06:55.423 回答
2

如果您正在阅读这个问题,那么您可能希望被提醒,虽然您不能部分专门化方法,但您可以添加一个非模板化重载,它将优先于模板化函数调用。IE

struct A
{
  template<typename T>
  bool foo(T arg) { return true; }

  bool foo(int arg) { return false; }

  void bar()
  {
    bool test = foo(7);  // Returns false
  }
};
于 2020-07-02T11:50:32.250 回答
1

在 C++ 17 中,我使用“if constexpr”来避免专门化(和重写)我的方法。例如 :

template <size_t TSize>
struct A
{
    void recursiveMethod();
};

template <size_t TSize>
void A<TSize>::recursiveMethod()
{
    if constexpr (TSize == 1)
    {
        //[...] imple without subA
    }
    else
    {
        A<TSize - 1> subA;

        //[...] imple
    }
}

避免专门化 A<1>::recursiveMethod()。您也可以将此方法用于以下示例:

template <typename T>
struct A
{
    void foo();
};

template <typename T>
void A<T>::foo()
{
    if constexpr (std::is_arithmetic_v<T>)
    {
        std::cout << "arithmetic" << std::endl;
    }
    else
    {
        std::cout << "other" << std::endl;
    }
}


int main()
{
    A<char*> a;
    a.foo();

    A<int> b;

    b.foo();
}

输出 :

other
arithmetic
于 2020-08-22T19:03:56.553 回答