C Programer  - 讨论区

标题:C++标准库 stringstream 编程示例

2014年01月20日 星期一 16:08

C++标准库的stringstream可以用来构建、解析结构化的字符串,非常类似于C语言标准库的sprintf系列函数。代码示例如下:

 

#include <iostream>
#include <string>
#include <sstream>

using namespace std;

int main() {
	stringstream ss;
	ss << "abc" << " " << 100 << " " << 0.123 << endl;
	cout << ss.str() << endl;
	string s;
	int i;
	double d;
	ss >> s >> i >> d;
	cout << s << "|" << i << "|" << d << endl;
	return 0;
}

参考资料:

http://www.cplusplus.com/reference/sstream/stringstream/

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2024

    京ICP备05028076号