我正在编写用于STL的C ++自定义分配器。当我将以下代码放入类定义中时,它将进行编译:

#include "MyAlloc.hpp"

#if 1
template <typename T>
typename MyAlloc<T>::pointer
MyAlloc<T>::allocate(size_type n, MyAlloc<void>::const_pointer p) {
  void *ptr = getMemory(n*sizeof(T));

  typename MyAlloc<T>::pointer tptr = static_cast<MyAlloc<T>::pointer>(ptr);
  return tptr;
}
#endif


但是,当我将其放在单独的.cpp文件中时,出现以下错误。我究竟做错了什么?错误在static_cast行上。

g++ -c MyAlloc.cpp
MyAlloc.cpp: In member function ‘typename MyAlloc<T>::pointer MyAlloc<T>::allocate(size_t, const void*)’:
MyAlloc.cpp:9: error: expected type-specifier
MyAlloc.cpp:9: error: expected `>'
MyAlloc.cpp:9: error: expected `('
MyAlloc.cpp:9: error: expected `)' before ‘;’ token
make: *** [MyAlloc.o] Error 1


PT

最佳答案

模板必须始终在翻译单元中定义。为了使用模板功能,模板的定义需要放在头文件中,而不是单独的.cpp文件中。

关于c++ - C++ STL内存分配器编译错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2189883/

10-10 05:24