赞
踩
在学习string类的过程中,我发现了assign这个函数,感觉很有用,就来记录一下
void assign(size_type n, const T& x = T());
void assign(const_iterator first, const_iterator last);
assign函数有两种使用方式:
容器名.assign (a, b);
将vector中的内容清空,并给予a个b元素
下面给出一个例子:
#include<iostream> #include<vector> using namespace std; int main() { vector<int>v1{ 1,2,3 }; //创建一个容器v1 元素类型是int 有三个元素 v1.assign(2, 5); for (int val : v1) { cout << val << endl; } cout << "--------------------" << endl; v1.assign(4, 5); for (int val : v1) { cout << val << endl; } cout << "--------------------" << endl; int a = 2; int b = 3; int n = a * b; int x; v1.assign(n, x); for (int val : v1) { cout << val << endl; } cout << "--------------------" << endl; return 0; }
通过上面这个例子,我们可以发现,首先,在传入新的元素之前,assign函数会先清空vector中的内容,之后,再传入新的数据,并且,无论是传入一个变量,还是传入未初始化的变量,都可以实现assign的功能
注意:第一个元素,即要传入的元素个数不能是未初始化的变量,不然程序会报错
容器名2.assign(容器名1.begin(),容器名1.end());
提示:
这种使用方法的含义就是:
将容器1中的begin()和end()之间的元素放到容器2中,包含起始位置和终止位置。同样的,也是先清空容器2中的内容
下面给出一个例子:
#include<iostream> #include<vector> using namespace std; int main() { vector<int>v1{ 1,2,3 }; vector<int>v2{ 1,2 }; v2.assign(v1.begin(), v1.end()); for (int val : v2) { cout << val << endl; } cout << "--------------" << endl; v2.assign(v1.begin() + 1, v1.end() - 1); for (int val : v2) { cout << val << endl; } cout << "--------------" << endl; return 0; }
通过上面这些例子,相信我们就可以基本明白assign是如何使用的了
vector<_Tp, _Allocator>::at(size_type __n)
{
if (__n >= size())
this->__throw_out_of_range();
return this->__begin_[__n];
}
了解即可,不用深究
arr[3]与arr.at(3)的效果是一样的,只是使用at函数,不会发生越界访问的情况,更加安全
举个例子:
#include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { vector<int>arr{ 1,2,3,4,5 }; for (int i = 0; i < arr.size(); i++) { cout << arr.at(i) << endl; } //cout << arr.at(5) << endl; return 0; }
运行结果:
相信通过上面的学习,我们已经明白了如何使用at函数
接下来,我们来学习append函数
append函数的使用格式:
字符串1.append(字符串2);
下面,举一个例子,方便大家理解:
#include<iostream> using namespace std; int main() { string a = "qaz"; string b = "wsx"; string c = "edc"; cout << a << endl; a.append(b); cout << a << endl; a.append(b + c); cout << a; return 0; }
运行结果:
通过上面这个例子,我们可以知道虽然append函数一次只能复制一个字符串,但这个字符串是可以先运算的,比如:b+c
append除了复制全部内容以外,还可以选取部分进行复制
使用格式:
字符串1.append(字符串2,起始位置index,复制元素个数n);
作用:
将字符串2中第index个位置开始(包含起始位置的元素),共n个元素,拷贝到字符串1的末尾
下面给出一段代码,方便大家理解:
#include<iostream> using std::string; using std::cout; using std::endl; int main() { string a = "hello"; string b = "world"; cout << a << endl; a.append(b, 2, 3); cout << a << endl; return 0; }
运行结果:
特别的:
当只传入起始位置index,而不传入复制元素个数n的时候,编译器默认拷贝到字符串末尾
字符串1.append(C语言风格的字符串2,复制元素的个数n);
将字符串2中从开始位置算起,共复制n个元素放到字符串1的末尾
#include<iostream>
using namespace std;
int main()
{
string a = "hello";
const char* b = "world";
a.append(b, 3);
cout << a << endl;
return 0;
}
运行结果:
当直接传入字符串的时候,编译器默认它是C语言风格的字符串
例子如下:
#include<iostream>
using namespace std;
int main()
{
string a = "hello";
a.append("world", 5);
cout << a << endl;
return 0;
}
字符串1.append(复制字符的个数n,复制的字符ch);
作用:
将n个ch复制到字符串1的后面
#include<iostream> using namespace std; int main() { string a = "hello"; char c = '!'; a.append(3, c); cout << a << endl; int n = 4; a.append(n, 'h'); cout << a << endl; return 0; }
运行结果:
对于assign、at和append函数的学习和介绍到这里就结束了,希望这篇文章对你有帮助,我们下次见~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。