我有一個頭文件,RandFunctions.hpp
其中包含的模板函數的成員,模板函數不是一個命名空間
#ifndef _RANDFUNCTIONS_HPP_
#define _RANDFUNCTIONS_HPP_
#include <stdlib.h>
#include <time.h>
namespace surena
{
namespace common
{
template<typename RealT> inline
RealT
RealRandom()
{
return rand()/(RealT(RAND_MAX)+1);
}
};
};
#endif
和另一頭文件,Search.hpp
包括RandFunctions.hpp
,
#ifndef _SEARCH_HPP_
#define _SEARCH_HPP_
#include "RandFunctions.hpp"
#include <stdlib.h>
#include <time.h>
namespace surena
{
namespace search
{
template<typename RealT>
class CTest
{
public:
CTest() {srand((unsigned)(time(0)));}
RealT
GenRand(){ return common::RealRandom(); }
};
};
};
#endif
時我將Search.hpp
包含在cpp
文件中,例如,
#include "Search.hpp"
int
main(int argc, char** argv)
{
CTest<float> test;
return(0);
}
我得到以下編譯時錯誤:
‘RealRandom’ is not a member of ‘surena::common’
這裏有什麼問題?
使用編譯器[具有更好的診斷消息](http://ideone.com/ENZpBQ)。 –