4

我一直在整个互联网和 stackoverflow 上寻找一个具体的答案,但我似乎找不到一个。我必须创建一个通用类,然后实现特定的功能。我的具体说明是:您需要使用模板表达式参数和模板类专业化和部分专业化。

我有一个模板类:

template <class T, int x, int y>
class Z {
    T **array[x][y];
    public:
         Z();
         void print();
         //and other methods
};

我需要:

1) 只有 x= 2 和 y = 2 的 Z 需要公共方法 void J()

2) 对于 x = 2 和 y= 2 的字符 Z,J 会做一些事情;对于其他所有事情,它会做其他事情

3) 只有在 T 为 char 的 Z 中,数组才会被初始化为某个值。其他的都是 0

自然,这有效:

template<class T, int x, int y>
Z<T,x,y>::Z<T,x,y>() { //initialize to 0 } 

但这不会:

template<int x, int y>
Z<char,x,y>::Z<char,x,y>() { //initialize to something}

同样(假设 J 存在)这不起作用:

template <class T>
void Z<T,2,2>::J() { //something }

我的问题是:

是否有任何简单的方法来实现上述项目?我需要将所有其他方法保留在 Z 中。给出提示或指出正确的方向(也许我错过了一个问题,因为有很多问题)会有所帮助。

谢谢。

4

2 回答 2

5

似乎您只想定义某些专业化的某些功能:如果print()在专业化和一般情况之间没有变化char,您似乎不想重新定义它。

// What you want to do (illegal in C++)
template<int,typename T>
struct Z
{
    T myValue;
    Z();
    void print() { /* ... */ }
};

template<int i, typename T>
Z<i,T>::Z() { /* ... */ }

template<int i>
Z<i,char>::Z() { /* ... */ }

但是,它不是这样工作的。类的部分或全部特化几乎没有共同点,除了模板参数的“原型”

// The two following types have only two things related: the template parameter is an int,
// and the second type is a full specialization of the first. There are no relations between
// the content of these 2 types.
template<int> struct A {};
template<> struct A<42> { void work(); };

您必须声明和定义每个(部分)专业化:

// Fixed example
template<int,typename T>
struct Z
{
    T myValue;
    Z();
    void print() { /* ... */ }
};
template<int i, typename T>
Z<i,T>::Z() { /* ... */ }

// Specialization for <all-ints,char>
template<int i>
struct Z<i,char>
{
    char myValue;
    char othervalue;
    Z();
    void print() { /* Same code than for the general case */ }
};

template<int i>
Z<i,char>::Z() { /* ... */ }

避免代码重复的唯一方法是使用特征继承:

// Example with the print function
template<typename T>
struct print_helper
{
    void print() { /* ... */ }
};

// Fixed example
template<int,typename T>
struct Z : public print_helper<T>
{
    T myValue;
    Z();
};
template<int i, typename T>
Z<i,T>::Z() { /* ... */ }

// Specialization for <all-ints,char>
template<int i>
struct Z<i,char> : public print_helper<char>
{
    char myValue;
    char othervalue;
    Z();
};

template<int i>
Z<i,char>::Z() { /* ... */ }

目前,如果没有重复,您将无法做您想做的事情(删除代码重复的功能已经static if并且已经被提议用于下一个 C++ 标准,请参阅n3322n3329)。

于 2012-11-18T21:33:50.060 回答
0

你可以看看这个课程http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Core-C-/Stephan-T-Lavavej-Core-C-5-of-n

虽然您无法为函数模板定义部分特化,但您可以为类或结构模板定义部分特化。

template<typename T> struct helper {
    static void doThingy(){}
};

template<typename X> struct helper<X*> {
    static void doThingy(){}
};

Helper(double*)::doThingy();

在此示例中,您希望仅当模板中的类型是指针类型时才专门化 doThingy() 中的行为。在这种情况下,您不能使用方法 doThingy() 的重载。这是因为您不能重载没有参数的函数。但是您可以对 struct helper 进行部分专业化。在专门的模板中,您为 doThingy() 实现了希望的行为。

于 2014-05-12T11:47:41.203 回答