push_back的使用

#include <iostream>
#include <vector>
#include <string>

using namespace std;

int main ()

{
vector<int> v1;
v1.push_back(10);
v1.push_back(11);
v1.push_back(12);

vector<int> v2(v1);

vector<int> v4(10,8);
vector<int> v6(8);//输出的是8个0,

vector<string> v5(8,"xiao cui");
vector<string> v7(9); //输出的是9个空串

for(vector<int>::size_type i = 0; i != v5.size(); ++i)
cout << v5[i] << endl;

cout << v1[0] << endl;
cout << v2[0] << endl;
cout << v4[0] << endl;
cout << v5[0] << endl;
cout << v6[0] << endl;
cout << v7[0] << endl;

v1[0] = 100;
cout << v1[0] << endl;


	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值