概述
函数:substr
应用:
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
string s1,s2;
s1="hello world!";
cout<<s1<<endl;
s2=s1.substr(6,5);//6是截取开始的位置,5是街区的长度。
cout<<s2<<endl;
return 0;
}
输出:
hello world!
world
###########################################################
vector 英文名是向量,可以用来代替数组;
c++reference 里面说vector比较消耗时间,所以少用比较好。
要包含头文件:<vector>
1.定义:
vector <T> name;//T 是 数据类型,name是向量名字
vector <int> n;
int arr[5]={1,2,3,4,5};
vector <int> m(arr,arr+5);//把数组从[arr[0],arr[5])复制到 m 里面。
2.迭代器:
vector <int> v;//定义向量
vector <int> ::iterator i;//定义迭代器
for(i=v.begin();i!=v.end();++i)//开始迭代
{
....//操作
....
}
3.举个例子;
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int a[5]={3,4,2,1,5};
vector <int> v(a,a+5);
void print()
{
vector<int> :: iterator i;
for(i=v.begin();i!=v.end();++i)
{
cout<<*i<<" ";
}
cout<<endl;
}
int main()
{
print();
sort(v.begin(),v.end());
print();
return 0;
}
输出:
3 4 2 1 5
1 2 3 4 5
最后
以上就是超帅电脑为你收集整理的字符串截取 substr 函数&vector的简单应用的全部内容,希望文章能够帮你解决字符串截取 substr 函数&vector的简单应用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复