Skip to content

Instantly share code, notes, and snippets.

@allen501pc
Created December 31, 2011 08:38
Show Gist options
  • Save allen501pc/1543405 to your computer and use it in GitHub Desktop.
Save allen501pc/1543405 to your computer and use it in GitHub Desktop.
在template中使用typename
template<typename T>
class A{
public:
T m_A;
void funcTest()
{
map<T , int> mapTempTable; /* 這部分沒問題, OK! */
/* 編譯器會出錯!
要改成 typename map<T, int>::iterator it; */
map<T, int>::iterator it;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment