c_cpp 字符串流

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 字符串流相关的知识,希望对你有一定的参考价值。

#include<iostream>  
#include<sstream> 

using namespace std; 
 
int main( void )  
{ 
 
    string s="carea 89 男"; 
    istringstream sin(s); 
    string name; 
    int age; 
    string sex; 
    sin>>name>>age>>sex; 
    cout<<"姓名:"<<name<<endl 
        <<"年龄:"<<age<<endl 
        <<"性别:"<<sex<<endl; 
 // 姓名:carea
 // 年龄:89
 // 性别:男
    return 0; 
} 

以上是关于c_cpp 字符串流的主要内容,如果未能解决你的问题,请参考以下文章

C++ 字符串流

字符串流

字符串流数学运算

C中的字符串流

字符串流有啥意义? [复制]

C++学习50 对字符串流的读写