亲宝软件园·资讯

展开

strstream C++标准库中sstream与strstream的区别详细解析

人气:0
想了解C++标准库中sstream与strstream的区别详细解析的相关内容吗,在本文为您仔细讲解strstream的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:C++标准库,sstream,strstream,下面大家一起来学习吧。

在C++有两种字符串流,一种在sstream中定义,另一种在strstream中定义。它们实现的东西基本一样。

strstream里包含
class strstreambuf;
class istrstream;
class ostrstream;
class strstream;
它们是基于C类型字符串char*编写的

sstream中包含
class istringstream;
class ostringstream;
class stringbuf;
class stringstream;
class …….
它们是基于std::string编写的

因此ostrstream::str()返回的是char*类型的字符串
而ostringstream::str()返回的是std::string类型的字符串

在使用的时候要注意到二者的区别,一般情况下推荐使用std::string类型的字符串
当然如果为了保持和C的兼容,使用strstream也是不错的选择

加载全部内容

相关教程
猜你喜欢
用户评论