TRY vector

Posted TogetherLaugh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TRY vector相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<string>
#include<vector>
using namespace std;
int main()
{
    vector <string> name;
    name.push_back("xiao jia yu ~");
    name.push_back("xiao you yu ~");
    for( int i=0; i < name.size(); i++ )
    {
        cout<<name[i]<<endl;
    }
    return 0;
}

以上是关于TRY vector的主要内容,如果未能解决你的问题,请参考以下文章

STL——vector

c++容器简单总结(续)

C++初阶---vector的使用及模拟实现 (待写。。)。

C++标准模板库STL最全总结收藏方便使用

vector

C++中的STL