Why this code does not compile (Cygwin)?
#include <开发者_如何学JAVAvector>
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 type
Tilemap'
Because the TtileMap::iterator
is not known to be a type yet. Add the typename
keyword to fix it
typedef typename TtileMap::iterator TtileMapIterator;
精彩评论