我想實現一個模板類(名爲Get <>在這裏),給定結構H,類型Get<H>::type
是H
本身如果qualified-id
H::der
不存在,並且是Get<H::der>::type
否則。我不明白下面的代碼有什麼問題:C++遞歸型性狀
#include <iostream>
#include <typeinfo>
using namespace std;
template<class U, class V = void>
struct Get
{
static const char id = 'A';
typedef U type;
};
template<class U>
struct Get<U,typename U::der>
{
static const char id = 'B';
typedef typename Get<typename U::der>::type type;
};
struct H1
{ };
struct H2
{ typedef double der; };
struct H3
{ typedef void der; };
struct H4
{ typedef H2 der; };
void print(char id, const char* name)
{
cout << id << ", " << name << endl;
}
int main(int , char *[])
{
print(Get<H1>::id, typeid(Get<H1>::type).name()); // prints "A, 2H1", OK
print(Get<H2>::id, typeid(Get<H2>::type).name()); // prints "A, 2H2", why?
print(Get<H3>::id, typeid(Get<H3>::type).name()); // prints "B, v" , OK
print(Get<H4>::id, typeid(Get<H4>::type).name()); // prints "A, 2H4", why?
}
我想要一些幫助,以使此代碼的行爲如預期。更具體地說,我希望獲取< H2> ::類型等於雙,和相同得到< H4> ::類型。
可能重複http://stackoverflow.com/questions/3008571/template-specialization-to-use -default-type-if-class-member-typedef-does-not-exi) –
litb的'tovoid'技巧在這個答案中解決了你的問題:http://stackoverflow.com/a/3009891/245265 –
不錯的把戲,天堂我不知道。 – ipc