模板部分专业化

时间:2011-03-08 14:37:52

标签: c++ metaprogramming

template<class T>
struct TypeX;

template<>
struct TypeX<int(...)>//HERE IF WITHOUT ELLIPSIS IT WILL COMPILE
{
    static std::string get_type()
    {
        return "int()";
    }
};

template<>
struct TypeX<int>
{
    static std::string get_type()
    {
        return "int";
    }
};

template<class T>
struct type_descriptor
{
    typedef T type;
    typedef typename std::remove_reference<T>::type no_ref_type;
    typedef typename std::remove_pointer<no_ref_type>::type no_ref_no_pointer_type;
    typedef typename std::remove_cv<no_ref_no_pointer_type>::type no_ref_no_pointer_no_cv_type;
    typedef typename std::remove_all_extents<no_ref_no_pointer_no_cv_type>::type no_ref_no_pointer_no_cv_no_ext_type;
    typedef no_ref_no_pointer_no_cv_no_ext_type bare_type;

    enum {isArray = std::is_array<T>::value, isPointer = std::is_pointer<T>::value, isRef = std::is_reference<T>::value};

    static std::string get_type()
    {
        return pointer_<isPointer>() + array_<std::is_array<no_ref_no_pointer_type>::value>() + TypeX<bare_type>::get_type();

    }
};
template<bool C>
std::string array_()
{return "";}

template<>
std::string array_<true>()
{return "array of";}

template<bool C>
std::string pointer_()
{return "";}

template<>
std::string pointer_<true>()
{return "pointer to";}

int _tmain(int argc, _TCHAR* argv[])
{
    cout << type_descriptor<int(*)()>::get_type();

    return 0;
}

请在代码中查看评论。问题是为什么如果我专注于省略号,这意味着任何数字我都会收到错误,但是当我专门讨论没有参数时,它会编译?

2 个答案:

答案 0 :(得分:1)

  

问题是如果我专注的原因   对于省略号,这意味着   任何数字我都会收到错误,但是   当我专攻没有争论的时候   编译?

因为省略号并不意味着任何数量的括号(因为你试图在main中使用它)。 省略号用于表示函数中可变数量的参数(C ++ 03)。


编辑:也许以下示例为您提供了足够的提示来实现您想要的内容:

template<class T>
struct TypeX
{
        TypeX() { cout << "TypeX" << endl; }
};

template<typename T>
struct TypeX<T(*)()> //will match with : int (*)(), char (*)(), etc!
{
        TypeX() { cout << "TypeX<T(*)()>" << endl; }
};

template<typename T, typename S>
struct TypeX<T(*)(S)> //will match with : int (*)(int), char (*)(int), etc!
{
        TypeX() { cout << "TypeX<T(*)(S)>" << endl; }
};

template<typename T, typename S, typename U>
struct TypeX<T(*)(S, U)> //will match with : int (*)(int, char), char (*)(int, int), etc!
{
       TypeX() { cout << "TypeX<T(*)(S, U)>" << endl; }
};
int main() {
        TypeX<int*>();
        TypeX<int(*)()>();
        TypeX<int(*)(int)>();
        TypeX<int(*)(char)>();
        TypeX<int(*)(char, int)>();
        TypeX<int(*)(short, char)>();
        return 0;
}

输出:

TypeX
TypeX<T(*)()>
TypeX<T(*)(S)>
TypeX<T(*)(S)>
TypeX<T(*)(S, U)>
TypeX<T(*)(S, U)>

在ideone演示:http://www.ideone.com/fKxKK

答案 1 :(得分:0)

省略号表示该函数可以在每个调用位置接受任意数量的参数。

int f(...);  // signature

int x = f();   // invocations
int y = f(my_int, my_double);

函数签名本身与每个调用天真隐含的更具体的签名 distinct (即int f()int f(int, double))。

因此,当可以专门针对int (*)(...)情况时,只有实际指定初始省略号的函数类型才会匹配。其他功能如int (*)(int)不匹配。