2010-09-06 65 views
1

我在上回爲模板的方法的參數一些問題模板,看看:鏈接問題返回

// CTestClass.h 
template<class T> 
class CTestClass 
{ 
public: 
    T getNewValue(); 
}; 

// CTestClass.cpp 
template<class T> 
T CTestClass<T>::getNewValue() 
{ 
    return 10; // just for tests I'm returning hard coded 10 
} 

// main.cpp 
int _tmain(int argc, _TCHAR* argv[]) 
{ 
    CTestClass<int> s; 
    int a = s.getNewValue(); 
    return 0; 
} 

我得到了以下錯誤:

錯誤LNK2019:無法解析的外部符號「市民:INT __thiscall CTestClass ::的getNewValue(無效)」(?@的getNewValue $ CTestClass 3 H @@ QAEHXZ)函數引用_wmain

回答