亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在C++中使用insert()插入函數

發布時間:2021-03-15 17:37:46 來源:億速云 閱讀:1549 作者:Leah 欄目:編程語言

這篇文章給大家介紹怎么在C++中使用insert()插入函數,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

具體內容如下:

basic_string& insert (size_type pos, const basic_string& str);

在原串下標為pos的字符前插入字符串str

basic_string& insert (size_type pos, const basic_string& str, size_type pos1, size_type n);

str從下標為pos1開始數的n個字符插在原串下標為pos的字符前

basic_string& insert (size_type pos, size_type n, char c);

在原串下標為pos的字符前插入n個字符c

代碼:

#include<iostream>
using namespace std;
int main()
{
 string str="hello";
 string s="Hahah";
 str.insert(1,s);//在原串下標為1的字符e前插入字符串s
 cout<<str<<endl;

 string str1="hello";
 char c='w';
 str1.insert(4,5,c);//在原串下標為4的字符o前插入5個字符c
 cout<<str1<<endl;

 string str2="hello";
 string s2="weakhaha";
 str2.insert(0,s2,1,3);//將字符串s2從下標為1的e開始數3個字符,分別是eak,插入原串的下標為0的字符h前
 cout<<str2<<endl;

 return 0;
}

運行結果:

怎么在C++中使用insert()插入函數

知識點補充:C++ string類insert函數

string的成員函數insert有以下多種重載:

string &insert(int p0, const char *s);——在p0位置插入字符串s

string &insert(int p0, const char *s, int n);——在p0位置插入字符串s的前n個字符

string &insert(int p0,const string &s);——在p0位置插入字符串s

string &insert(int p0,const string &s, int pos, int n);——在p0位置插入字符串s從pos開始的連續n個字符

string &insert(int p0, int n, char c);//在p0處插入n個字符c

iterator insert(iterator it, char c);//在it處插入字符c,返回插入后迭代器的位置

void insert(iterator it, const_iterator first, const_iteratorlast);//在it處插入從first開始至last-1的所有字符

void insert(iterator it, int n, char c);//在it處插入n個字符c

關于怎么在C++中使用insert()插入函數就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

遂溪县| 区。| 连江县| 宜州市| 泰安市| 胶南市| 莲花县| 巴林左旗| 昌江| 横峰县| 阳城县| 宁海县| 志丹县| 海林市| 公主岭市| 蓬溪县| 体育| 通河县| 临城县| 嘉义县| 安徽省| 嘉荫县| 双江| 富宁县| 仪陇县| 沅陵县| 广州市| 濮阳市| 通州市| 忻州市| 融水| 汨罗市| 锡林浩特市| 唐河县| 城步| 贵州省| 东明县| 腾冲县| 泊头市| 炎陵县| 永宁县|