1 Star 1 Fork 0

AlbertDarren / STL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
sequenceContainerOperations5.cpp 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
AlbertDarren 提交于 2022-04-03 00:55 . first commit
/**
* @author AlbertDarren
* @contact 2563491540@qq.com
*/
#include <iostream>
#include <vector>
#include <list>
#include <deque>
using namespace std;
int main_15()
{
vector<int> v1({-1,2,1,4,7,6});
vector<int>::reference first=v1.front();
cout <<"The first element in the vector is "<< first << endl;
first=0;
cout <<"The first element in the vector is "<< *v1.begin() << endl;
cout <<"The last element in the vector is "<< v1.back() << endl;
v1.back()=-1;
cout <<"The last element in the vector is "<< *--v1.end() << endl;
cout << "The second element in the vector is " <<v1[1]<< endl;
cout << "The fourth element in the vector is " <<v1.at(3)<< endl;
v1[1]=5,v1.at(3)=3;
cout << "The second element in the vector is " <<v1[1]<< endl;
cout << "The fourth element in the vector is " <<v1.at(3)<< endl;
cout << "index overflow "<<v1[v1.size()+5]<< endl;
try
{
cout << v1.at(v1.size()+5) << endl;
}
catch(out_of_range)
{
cout << "index out of range" << endl;
}
return 0;
}
C++
1
https://gitee.com/AlbertDarren_admin/stl.git
git@gitee.com:AlbertDarren_admin/stl.git
AlbertDarren_admin
stl
STL
master

搜索帮助