-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtypename_keyword.cpp
37 lines (30 loc) · 1.07 KB
/
typename_keyword.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <iostream>
#include <memory> //std::shared_ptr
/**
this program demos the usage of "typename" keyword
"typename" is needed to be added for qualified name when template argument is unsure
**/
//[C++ Cast Template](https://stackoverflow.com/questions/37983562/c-cast-template)
//[Where and why do I have to put the “template” and “typename” keywords?](https://stackoverflow.com/questions/610245/where-and-why-do-i-have-to-put-the-template-and-typename-keywords)
//[Qualified name lookup](https://en.cppreference.com/w/cpp/language/qualified_lookup)
template<typename T>
class Animal{
public:
using Ptr = std::shared_ptr< Animal< T > >;
};
template<typename T>
void f(){
Animal<T> a;
//error: need ‘typename’ before ‘Animal<T>::Ptr’ because ‘Animal<T>’ is a dependent scope
//error: expected ‘;’ before ‘ap’
//Animal<T>::Ptr ap;
//correct
typename Animal<T>::Ptr ap;
}
int main(){
//ok
Animal<int> a;
//when template argument is concrete, we don't need to add "typename"
Animal<int>::Ptr ap;
return 0;
}