C++ Primer 1.2章节

#include<vecter>

vector<string>chapter_title(20);

表示chapter_title是一个向量,包含有20个字符串类型的元素。

vector<int >ivec(20);

表示编译器创建一个能够存放20个整数的向量对象;

其余内容无意义。

posted @ 2019-11-23 22:42  Butcher512  阅读(83)  评论(0)    收藏  举报