list 能否放置vector类型?


例如这样是否可行:
list < vector< string > > ?

C++

RGM-89S 9 years, 8 months ago

没有问题,注意语法书写上,最右边的两个>之间需要有个空格,否则语法解析的时候会将其和>>符号混淆;


 list < vector< string > >

Bug鬼见愁 answered 9 years, 8 months ago

当然可以,不然怎么叫“容器”呢?

怎么老是你 answered 9 years, 8 months ago


 std::list<std::vector<std::string> >

当然可以

粮仓文章区点我 answered 9 years, 8 months ago

Your Answer