赞
踩
原创作者:郑同学的笔记
原创地址:https://zhengjunxue.blog.csdn.net/article/details/134698698
qq技术交流群:921273910
当涉及到字符串的处理和操作时,C++中的stringstream(字符串流)是一个非常有用的工具。它允许我们将字符串的输入和输出与标准输入输出流类似地进行操作。本教程将向你介绍stringstream的基本概念、用法和示例。
首先,你需要在代码中包含 头文件,以便使用stringstream类。
#include <sstream>
stringstream类是通过将字符串与流对象相关联来工作的。它可以将字符串内容读取到流对象中,也可以将流对象的内容转换为字符串。
创建一个 stringstream 对象,可以使用默认构造函数。
std::stringstream ss;
使用流操作符 << 将不同类型的数据写入 stringstream 中。可以连续写入多个数据。
int num = 42;
std::string str = "Hello, World!";
float pi = 3.14159;
ss << "The number is: " << num << "\n";
ss << "The string is: " << str << "\n";
ss << "The value of pi is: " << pi << "\n";
使用 str() 成员函数可以获取拼接后的字符串。
std::string result = ss.str();
要将字符串放入stringstream对象中,可以使用<<运算符。以下示例将字符串"Hello, World!"放入stringstream对象中:
std::stringstream ss;
std::string str = "Hello, World!";
ss << str;
现在,字符串"Hello, World!"已经被放入了stringstream对象ss中。
要从stringstream对象中提取内容并将其转换为字符串,可以使用>>运算符。以下示例从stringstream对象中提取内容并将其存储在字符串变量中:
std::stringstream ss;
std::string str;
ss >> str;
现在,stringstream对象ss中的内容已被提取并存储在字符串变量str中。
有时,我们需要使用字符串和数字的拼接,这时便可以使用流对象。
你可以使用 C++ 的字符串流 stringstream 将 {code:errCode} 拼接成一个完整的 JSON 字符串,其中的 errCode 为具体的值。以下是一个示例代码:
#include <iostream> #include <sstream> int main() { // 假设 errCode 的值为 0 int errCode = 0; // 创建字符串流 std::stringstream ss; // 向字符串流中输出 JSON 数据 ss << "{ \"code\": " << errCode << " }"; // 获取拼接后的字符串 std::string json_str = ss.str(); // 输出结果 std::cout << json_str << std::endl; return 0; }
在这个示例中,我们首先定义了一个整型变量 errCode,并将其赋值为 0。接下来,我们创建了一个字符串流 ss,并使用流运算符 << 向其中输出 JSON 数据。最后,我们使用 ss.str() 函数获取拼接后的字符串,并输出结果。
下面是一个完整的示例,演示如何使用stringstream从字符串中提取整数并进行计算:
#include <iostream> #include <sstream> #include <string> int main() { std::string numbers = "10 20 30 40 50"; std::stringstream ss(numbers); std::string token; int sum = 0; while (getline(ss, token, ' ')) { int number; std::stringstream(token) >> number; sum += number; } std::cout << "Sum: " << sum << std::endl; return 0; }
在上述示例中,我们首先定义了一个包含一系列数字的字符串numbers。然后,我们将其放入一个stringstream对象ss中。
接下来,我们使用getline()函数以空格作为分隔符从stringstream中逐行获取数字。获取到的每个数字都存储在字符串变量token中。
在每次循环迭代中,我们使用另一个stringstream对象将字符串token转换为整数,并将其加到变量sum中。
最后,我们打印出计算得到的总和。
stringstream是C++中非常有用的工具,可以方便地处理字符串的输入和输出。通过将字符串与流对象相关联,我们可以轻松地将字符串数据转换为其他类型(如整数或浮点数),或者将其他类型的数据转换为字符串。
参考
1、C++ STL 容器库 中文文档
2、STL教程:C++ STL快速入门
3、https://www.apiref.com/cpp-zh/cpp/header.html
4、https://en.cppreference.com/w/cpp/header
5、WIKI教程_C ++标准库_C++ Library - <algorithm>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。