C++心决之stl中那些你不知道的秘密(string篇)

在C++ STL中,std::string是一种非常常用的字符串类型。虽然std::string提供了基本的字符串操作功能,但是在某些情况下,你可能会发现一些你未曾注意到的秘密。

  1. reserve 方法:

    reserve 方法可以预分配字符串容量,以减少在增加字符串长度时的内存重新分配次数。




std::string str;
str.reserve(100);  // 预分配100个字符的空间
  1. shrink_to_fit 方法:

    shrink_to_fit 方法可以请求std::string释放未使用的内存。




std::string str = "Hello, World!";
str.shrink_to_fit();  // 请求释放未使用的内存
  1. datac_str 方法:

    data 方法返回指向字符数组的指针,c_str 方法返回指向以空字符结尾的字符数组的指针。




std::string str = "Hello, World!";
const char* dataPtr = str.data();
const char* cStrPtr = str.c_str();
  1. 移动语义:

    C++11引入了移动语义,可以高效地转移std::string中的内存所有权。




std::string createString() {
    std::string str = "Hello, World!";
    return str;  // 移动构造函数,而不是复制
}
  1. 初始化列表:

    可以使用初始化列表来初始化std::string




std::string str = {'H', 'e', 'l', 'l', 'o'};
  1. append 方法:

    append 方法可以在字符串末尾追加字符或字符串。




std::string str = "Hello, ";
str.append("World!");  // 结果为 "Hello, World!"
  1. find 方法:

    find 方法可以用于查找子字符串。




std::string str = "Hello, World!";
size_t pos = str.find("World");  // 返回子字符串首次出现的位置
  1. 迭代器:

    可以使用迭代器遍历std::string中的字符。




std::string str = "Hello, World!";
for (auto it = str.begin(); it != str.end(); ++it) {
    std::cout << *it;
}

这些是std::string的一些不太常用但有时候很有用的功能。

none
最后修改于:2024年08月10日 19:14

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日