问题描述
- c++类模板可以前置声明吗
- c++类模板可以前置声明吗?格式是什么样的?有不能前置声明的吗?
在.h文件中前置声明,在.cpp中include
解决方案
无非就是
templete <typename 类型>class xxx{ ...;}
解决方案二:
引用 2楼
http://blog.csdn.net/fuli1215/article/details/6320730
解决方案三:
template class xxxx;
解决方案四:
http://blog.csdn.net/fuli1215/article/details/6320730
解决方案五:
http://blog.csdn.net/fuli1215/article/details/6320730
时间: 2024-10-21 23:02:06