#include <string>
是 C++ 标准库提供的头文件之一,它包含了关于字符串的一系列类和函数。
这个头文件中最常用的类是 std::string,它提供了对字符串的高级操作和管理。
一、常用的函数和类
operator+
: 字符串拼接
operator==
, operator!=
: 字符串比较
length()
, size()
: 获取字符串长度
at()
, operator[]
: 访问字符串中的字符
getline()
: 从输入流中读取一行
to_string()
: 将数值转换为字符串
atoi()
, atol()
, atof()
, atod()
: 将字符串转换为整数或浮点数
substr()
: 提取子串
find()
, rfind()
, find_first_of()
, find_last_of()
: 在字符串中查找子串或字符
replace()
: 替换
erase()
: 删除字符。