2016-04-03 81 views
0

模板using聲明的以下用法有什麼問題?模板「使用」聲明的這種用法有什麼問題

template <typename T1, typename T2> struct A { 
    template <typename AnotherT1> 
    using MyTemplate = A<AnotherT1, T2>; 
}; 

template<class SomeA> struct B { 
    using MyType = typename SomeA::MyTemplate<double>; 
}; 

int main() { 
    B<A<int, int>> b; (void)b; 
} 

gcc 4.8.2抱怨:

temp.cpp:17:46: error: expected ‘;’ before ‘<’ token 
    using MyType = typename SomeA::MyTemplate<double>; 
              ^
temp.cpp:17:46: error: expected unqualified-id before ‘<’ token 
temp.cpp: In instantiation of ‘struct B<A<int, int> >’: 
temp.cpp:21:20: required from here 
temp.cpp:17:46: error: ‘typename A<int, int>::MyTemplate’ names ‘template<class AnotherT1> using MyTemplate = struct A<AnotherT1, int>’, which is not a type 
+2

'使用的MyType =類型名SomeA ::模板MyTemplate的;' –

+0

@PiotrSkotnicki謝謝!如果你可以回覆它,那將是非常好的,在這個回覆中你可以包含一個鏈接,在這裏我將能夠了解這個詞的用法。 – AlwaysLearning

+0

請參考你的重複問題 –

回答