91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么在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

临城县| 库伦旗| 精河县| 朔州市| 丹寨县| 越西县| 甘泉县| 巫溪县| 如皋市| 赞皇县| 西吉县| 五华县| 宁国市| 合水县| 铜陵市| 石嘴山市| 龙南县| 青河县| 宝清县| 祥云县| 临泉县| 金川县| 鄂州市| 南汇区| 松江区| 灌南县| 南溪县| 来宾市| 罗平县| 海口市| 习水县| 绍兴市| 怀宁县| 扎赉特旗| 扬州市| 四子王旗| 娱乐| 罗田县| 宝清县| 元阳县| 孝义市|