stringstream 使用方法

简介:

C++中的stringstream是专门用来处理字符串流的,可以按顺序将string或int都拼接起来,而不用把int转换为string格式,使用方法如下:

#include <string>
#include <strstream>
#include <sstream>
stringstream strstream;
std::string s;
std::string s1 = "hello";
int d = 13;
strstream.str(""); strstream.clear();
strstream << s1 << "world" << d << "!"; strstream >> s;

本文转自博客园Grandyang的博客,原文链接:使用方法stringstream ,如需转载请自行联系原博主。

相关文章
|
6月前
|
存储 Go
go语言中fmt格式化包和内置函数汇总
【7月更文挑战第10天】本文介绍fmt包和`Errorf`用于创建格式化的错误消息。`fmt`包还涉及一些接口,如`Formatter`、`GoStringer`、`ScanState`、`Scanner`和`Stringer`,支持自定义格式化和输入/输出处理。
95 1
|
5月前
|
Go
【go笔记】使用标准库flag解析命令行参数
【go笔记】使用标准库flag解析命令行参数
|
7月前
getchar()函数的格式和使用方法
【6月更文挑战第24天】getchar()函数的格式和使用方法。
146 2
|
7月前
|
C语言
C语言的标准库:string.h, math.h, stdlib.h
C语言的标准库:string.h, math.h, stdlib.h
|
7月前
|
C语言
【C语言】:const的使用方法
【C语言】:const的使用方法
35 0
|
安全 C语言
strtok()函数的使用方法
strtok()函数的使用方法
195 0
|
Go
一文了解 Go 标准库 strings 常用函数和方法
我是陈明勇,本文分享的知识是 Go 标准库 —— strings 常用函数和方法。如果本文对你有帮助,不妨点个赞,如果你是 Go 语言初学者,不妨点个关注,一起成长一起进步,如果本文有错误的地方,欢迎指出!
188 1
一文了解 Go 标准库 strings 常用函数和方法
|
安全 编译器 C语言
解决c语言中调用scanf()或者strcpy()函数报错问题
解决c语言中调用scanf()或者strcpy()函数报错问题
265 0
解决c语言中调用scanf()或者strcpy()函数报错问题
C标准库string.h中几个常用函数的使用详解
C标准库string.h中几个常用函数的使用详解
125 0
C标准库string.h中几个常用函数的使用详解