此函數用於在字符串末尾添加新字符 ch,將其長度增加 1。
用法
考慮一個字符串 s1 和字符 ch 。語法是:
s1.push_back(ch);
參數
ch:要添加的新角色。
返回值
它不返回任何值。
例子1
讓我們看一個簡單的例子。
#include<iostream>
using namespace std;
int main()
{
string s1 = "Hell";
cout<< "String is:" <<s1<<'\n';
s1.push_back('o');
cout<<"Now, string is:"<<s1;
return 0;
}
例子2
讓我們考慮另一個簡單的例子。
#include<iostream>
using namespace std;
int main()
{
string str = "java tutorial ";
cout<<"String contains:" <<str<<'\n';
str.push_back('1');
cout<<"Now,string is:"<<str;
return 0;
}
輸出:
String contains:java tutorial Now,string is java tutorial 1
例子3
讓我們看看在vector末尾插入一個元素的例子。
#include<iostream>
#include<vector>
using namespace std;
int main()
{
vector<char> s;
s.push_back('j');
s.push_back('a');
s.push_back('v');
s.push_back('a');
for(int i=0;i<s.size();i++)
cout<<s[i];
return 0;
}
輸出:
Java
相關用法
- C++ String pop_back()用法及代碼示例
- C++ String swap()用法及代碼示例
- C++ String back()用法及代碼示例
- C++ String append()用法及代碼示例
- C++ String Assign()用法及代碼示例
- C++ String begin()用法及代碼示例
- C++ String size()用法及代碼示例
- C++ String resize()用法及代碼示例
- C++ String Find()用法及代碼示例
- C++ String crend()用法及代碼示例
- C++ String compare()用法及代碼示例
- C++ String empty()用法及代碼示例
- C++ String replace()用法及代碼示例
- C++ String at()用法及代碼示例
- C++ String insert()用法及代碼示例
- C++ String clear()用法及代碼示例
- C++ String Data()用法及代碼示例
- C++ String cend()用法及代碼示例
- C++ String find_first_not_of()用法及代碼示例
- C++ String find_last_of()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ String push_back()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。