template<class T>class ResourceManager{ private: struct ResourceWrapper; std::List<ResourceWrapper*> resources_; // This compiles fine std::List<ResourceWrapper*>::iterator // Error occurs here searchForResource(const std::string& file);};
另外,这是我如何定义searchForResource函数?
template<class t>std::List<typename ResourceManager<T>::ResourceWrapper*>::iterator ResourceManager<T>::searchForResource(const std::string& file){ // ...}解决方法 std :: List< ResourceWrapper *> :: iterator很难让编译器理解.在实现和声明中用typename作为前缀,让编译器知道它是一个类型.
像这样:
typename std::List<ResourceWrapper*>::iterator searchForResource(const std::string& file);总结
以上是内存溢出为你收集整理的C模板:返回list :: iterator全部内容,希望文章能够帮你解决C模板:返回list :: iterator所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)