C模板:返回list :: iterator

C模板:返回list :: iterator,第1张

概述如何使以下代码有效?在编译期间,我收到一个错误,告诉我searchForResource函数没有返回类型. template<class T>class ResourceManager{ private: struct ResourceWrapper; std::list<ResourceWrapper*> resources_; // This compiles fine 如何使以下代码有效?在编译期间,我收到一个错误,告诉我searchForResource函数没有返回类型.

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所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1222628.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存