C++【string类】(一)

string类

1.为什么要学string?

在C语言中字符出串是以'/0'结尾的一些字符的结合,为了操作方便,C标准库中提供了一些str类库函数,但是这些库函数与字符串时分隔开的,不符合OOP(面向对象编程)的思想,并且底层空间需要用户自己管理,可能会越界访问。

2.标准库类型的string类

标准库类型string表示可变长的字符序列,使用string类型必须包含string头文件。作为标准库的一部分,string定义在命名空间std中。

cpp 复制代码
#include<string>
using namespace std;

2.1 string类的构造

  • string类的构造

string常见的构造

cpp 复制代码
#include<iostream>
#include<string>
using namespace std;
//class string
//{
//	char* _str;
//	size_t _size;
//	size_t _capaicty;
//};//底层实现
int main()
{
	string s1;                  //无参的构造
	string s2("hello wrold");   //带参的构造
	string s3 = "hello world";  //带参的构造
	string s4(s3);              //拷贝构造
	string s5(10, '#');         //多个字符构造
	return 0;
}

2.2string类的析构

string类的析构出了作用域自动调用,把string内的资源进行释放。

2.3读写string类

cpp 复制代码
#include<iostream>
#include<string>
using namespace std;

int main()
{
	string s;           //空字符串
	cin >> s;           //将string对象读入s
	cout << s << endl;  //输出s
	return 0;
}

2.4string类的赋值重载

cpp 复制代码
#include <iostream>
#include <string>

int main()
{
	std::string str1, str2, str3;
	str1 = "Test string: ";   // c-string
	str2 = 'x';               // single character
	str3 = str1 + str2;       // string

	std::cout << str3 << '\n';
	return 0;
}

2.5string的遍历

cpp 复制代码
#include<iostream>
#include<string>
#include<vector>
#include<list>
using namespace std;
void test_string()
{
	string s1("hello world");
	s1[0]++;
	cout << s1 << endl;

	s1[0] = 'x';
	cout << s1 << endl;

	// 遍历1
	// 下标+[]
	for (size_t i = 0; i < s1.size(); i++)
	{
		s1[i]++;
	}
	cout << s1 << endl;

	for (size_t i = 0; i < s1.size(); i++)
	{
		cout << s1[i] << " ";
	}
	cout << endl;
	cout << s1.size() << endl;
	//遍历2
	//迭代器
	string::iterator it = s1.begin();
	while (it != s1.end())
	{
		(*it)--;
		++it;
	}
	cout << endl;

	it = s1.begin();
	while (it != s1.end())
	{
		cout << *it << " ";
		++it;
	}
	cout << endl;

}
void test_string2()
{
	string s("hello world");
	vector<int> v;
	v.push_back(1);
	v.push_back(2);
	v.push_back(3);
	v.push_back(4);

	list<int> lt;
	lt.push_back(10);
	lt.push_back(20);
	lt.push_back(30);
	lt.push_back(40);

	reverse(s.begin(), s.end());
	reverse(v.begin(), v.end());
	reverse(lt.begin(), lt.end());
	for (auto& e : s)
	{
		e--;
	}

	//for (auto e : s)
	for (char e : s)
	{
		cout << e << " ";
	}
	cout << endl;

	char x = 'a';

	// for (auto x : v)
	for (int x : v)
	{
		cout << x << " ";
	}
	cout << endl;

	for (auto e : lt)
	{
		cout << e << " ";
	}
	cout << endl;

}

int main() 
{
	return 0;
}
相关推荐
钢铁男儿4 分钟前
C# 方法(引用类型作为值参数顸引用参数)
开发语言·c#
明月看潮生6 分钟前
青少年编程与数学 02-019 Rust 编程基础 02课题、开始编程
开发语言·算法·青少年编程·rust·编程与数学
是店小二呀7 分钟前
【算法-链表】链表操作技巧:常见算法
android·c++·算法·链表
李匠20248 分钟前
C++负载均衡远程调用学习之实时监测与自动发布功能
c++·学习
yuanManGan15 分钟前
C++入门小馆 :多态
开发语言·c++
CodeWithMe23 分钟前
【C/C++】RPC与线程间通信:高效设计的关键选择
c++·中间件
坐吃山猪24 分钟前
Python-JsonRPC
开发语言·python
刃神太酷啦24 分钟前
C++入门(下)--《Hello C++ World!》(2)(C/C++)
java·c语言·c++·git·算法·github
小毛驴85028 分钟前
Windows环境,Python实现对本机处于监听状态的端口,打印出端口,进程ID,程序名称
开发语言·windows·python
MyhEhud36 分钟前
Kotlin zip 函数的作用和使用场景
开发语言·windows·kotlin