码迷,mamicode.com
首页 > 编程语言 > 详细

C++

时间:2017-06-11 10:23:53      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:整数   name   using   log   vector   c++   namespace   out   创建   

Array 是固定大小的,不能额外增加元素.当我们想定义不固定大小的字符时,可以使用 vector(向量) 标准库。

#include <iostream>
#include <vector>

using namespace std;

int main() {
    // 创建vector,用于存储整型数据
    vector<int> vec;
    int i;

    // 显示vec初始大小
    cout << "Vector size = " << vec.size() << endl;

    // 追加整数
    for (int i = 0; i < 5; i++){
        vec.push_back(i);
    }
    cout << "Vector size = " << vec.size() << endl;

    return 0;
}
Vector size = 0
Vector size = 5
请按任意键继续. . .

 

C++

标签:整数   name   using   log   vector   c++   namespace   out   创建   

原文地址:http://www.cnblogs.com/liukedong/p/6980515.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!