真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C++的string容器如何使用

本篇內(nèi)容介紹了“C++的string容器如何使用”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

成都創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站制作、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的昌江網(wǎng)站設(shè)計(jì)、移動媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

string基本概念

本質(zhì):

string是C++風(fēng)格的字符串,而string本質(zhì)上是一個類

string和char*區(qū)別:

  • char*是一個指針

  • string是一個類,類內(nèi)部封裝了char*,管理這個字符串,是一個char*型的容器。

特點(diǎn):
string類內(nèi)部封裝了很多成員方法
例如:查找find,拷貝copy,刪除delete,替換replace,插入insert
string管理char*所分配的內(nèi)存,不用擔(dān)心復(fù)制越界和取值越界等,由類內(nèi)部進(jìn)行負(fù)責(zé)。

string構(gòu)造函數(shù)

#include 
using namespace std;
#include
//string 的構(gòu)造函數(shù)
void test01()
{
	//默認(rèn)構(gòu)造
	string s1;
	 //string(const char* s);使用字符串s初始化
	const char* str = "hello,world";
	string s2(str);
	cout << "s2= " << s2 << endl;
	//string(const string& str)使用一個string對象初始化另一個string對象
	string s3(s2);
	cout << "s3= " << s3 << endl;
	//string(int n,char c);使用n個字符c初始化
	string s4(10, "a");
	cout << s4 << endl;
}
int main()
{
	test01();
}

string賦值操作

功能描述:

給string字符串進(jìn)行賦值

#include 
using namespace std;
#include
//string的賦值操作
void test01()
{
	//string& operator=(const char* s)//char*類型字符串 賦值給當(dāng)前的字符串
	string str1;
	str1 = "hello,world";
	cout << "str1=" <

string字符串拼接

功能描述:

實(shí)現(xiàn)在字符串末尾拼接字符串

#include 
using namespace std;
#include
//string字符串拼接
void test01()
{
	//第一種方法:重載+=操作符
	string str1 = "我";
	str1 += "愛玩游戲";
	cout << "str1= " << str1 << endl;
	str1 += ":";
	cout << "str1= " << str1 << endl;
	string str2 = "LOL";
	str1 += str2;
	cout << "str1= " << str1 << endl;
	//把字符串s連接到當(dāng)前字符串結(jié)尾
	string str3 = "I";
	str3.append("love");
	cout << "str3= " << str3 << endl;
	//把字符串s的前n個字符連接到當(dāng)前字符字符串結(jié)尾
	str3.append("game abcde", 4);
	cout << "str3= " << str3 << endl;
	//用append追加一個字符串
	str3.append(str2);
	cout << "str3= " << str3 << endl;
	//字符串s從pos開始的n個字符連接到字符串結(jié)尾
	str3.append(str2, 0, 3);//參數(shù)2:從哪個位置開始截取,參數(shù)3 截取字符個數(shù)
	cout << "str3= " << str3 << endl;
}
int main()
{
	test01();
}

string查找和替換操作

功能描述:

  • 查找:查找指定字符串是否存在

  • 替換:在指定位置替換字符串

#include 
using namespace std;
#include
//字符串的查找和替換
//1.查找
void test01()
{
	string str1 = "abcdefg";
	int pos=str1.find("de");
	if (pos == -1)
	{
		cout << "未找到字符串" << endl;
	}
	else
	{
		cout << "找到字符串pos: " << pos << endl;
	}

	//rfind
	pos=str1.rfind("de");
	cout << "pos= " << pos << endl;
	//rfind和find的區(qū)別
	//rfind從右往左查找,find從左往右查找
}
//2.替換
void test02()
{
	string str1 = "abcdefg";
	//replace在替換時,要指定從哪個位置起,多少個字符,替換成什么樣的字符串
	//從1號位置起3個字符替換為"1111"
	str1.replace(1, 3, "1111");
	cout << "str1= " << str1 << endl;
}
int main()
{
	test01();
	test02();
}

string字符串比較

功能描述:

  • 字符串之間的比較

  • 字符串比較是按字符的ASCII碼進(jìn)行比較

  • =返回 0

返回 1

< 返回 -1

#include 
using namespace std;
#include
//字符串比較
void test01()
{
	string str1 = "A";
	string str2 = "a";
	if (str1.compare(str2) == 0)
	{
		cout << "str1等于str2" << endl;
	}
	else if (str1.compare(str2) > 0)
	{
		cout << "str1大于str2" << endl;
	}
	else if (str1.compare(str2) < 0)
	{
		cout << "str1小于str2" << endl;
	}

}
int main()
{
	test01();
}

string字符存取

string中單個字符存取方式有兩種:

  • char& operator[](int n);//通過[]方式取字符

  • char& at(int n);//通過at方法獲取字符

#include 
using namespace std;
#include
//string 字符存取
void test01()
{
	string str = "hello";
	cout << "str= " <

string插入和刪除

功能描述:

對string字符串進(jìn)行插入和刪除字符操作

#include 
using namespace std;
#include
//字符串的插入和刪除
void test01()
{
	string str = "hello";
	//插入
	str.insert(1, "111");
	cout << "str= " << str << endl;
	//刪除
	str.erase(1, 3);
	cout << "str= " << str << endl;
}
int main()
{
	test01();
}

string子串

功能描述:

從字符串中獲取想要的子串

#include 
using namespace std;
#include
//string求子串
void test01()
{
	string str = "abcdef";
	string subStr = str.substr(1, 3);
	cout << "subStr= " << subStr << endl;
}
int main()
{
	test01();
}

“C++的string容器如何使用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


網(wǎng)頁名稱:C++的string容器如何使用
鏈接地址:http://weahome.cn/article/jpised.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部