模板中T的向量的向量是:班级

发布于 2024-08-25 09:00:17 字数 577 浏览 5 评论 0 原文

为什么这段代码不能编译(Cygwin)?

#include <vector>

template <class Ttile>
class Tilemap
{
    typedef std::vector< Ttile > TtileRow;
    typedef std::vector< TtileRow > TtileMap;
    typedef TtileMap::iterator TtileMapIterator; // error here
};

错误:类型std::vector; >、std::allocator; > > >'不是从类型Tilemap'

派生的

Why this code does not compile (Cygwin)?

#include <vector>

template <class Ttile>
class Tilemap
{
    typedef std::vector< Ttile > TtileRow;
    typedef std::vector< TtileRow > TtileMap;
    typedef TtileMap::iterator TtileMapIterator; // error here
};

error: type std::vector<std::vector<Ttile, std::allocator<_CharT> >, std::allocator<std::vector<Ttile, std::allocator<_CharT> > > >' is not derived from typeTilemap'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风轻花落早 2024-09-01 09:00:17

因为 TtileMap::iterator 还不知道是一种类型。添加 typename 关键字来修复它

typedef typename TtileMap::iterator TtileMapIterator;

Because the TtileMap::iterator is not known to be a type yet. Add the typename keyword to fix it

typedef typename TtileMap::iterator TtileMapIterator;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文