Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
317 views
in Technique[技术] by (71.8m points)

c++ - ERROR: "dependent name is not a type". When use typedef type in class as return value, with template

template <class Item>
class bag
{
public:
    //TYPEDEF
    typedef size_t size_type;
    typedef Item value_type;
...
}

and when I use

template<class Item>
bag<Item>::size_type bag<Item>::count(const Item& target) const

VC++ report error as Source.cpp(207): warning C4346: 'bag::size_type' : dependent name is not a type

Could anybody show me why? Thanks!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It should be

template<class Item>
typename bag<Item>::size_type bag<Item>::count(const Item& target) const

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...