C++语言基础 例程 字符串流

贺老师的教学链接  本课讲解

例:“写”字符数组

#include<iostream>
#include <strstream>
using namespace std;
struct student
{
    int num;
    char name[20];
    float score;
};

int main( )
{
    student stud[3]= {1001,"Li",78,1002,"Wang",89.5,1004,"Fun",90};
    char c[50];				   //用户定义的字符数组
    ostrstream strout1(c,30);   //建立输出字符串流,与数组c建立关联,缓冲区长30
    for(int i=0; i<3; i++)     //向字符数组c写3个学生的数据
        strout1<<stud[i].num<<stud[i].name<<stud[i].score;
    strout1<<ends;              //ends是C++的I/O操作符,插入一个′\\0′
    cout<<"array c:"<<c<<endl;    //显示字符数组c中的字符
    ostrstream strout2(c,40);  //这时,c将被重写
    for(int i=0; i<3; i++)
        strout2<<stud[i].num<<" "<<stud[i].name<<" "<<stud[i].score<<" ";
    strout2<<ends;              //ends是C++的I/O操作符,插入一个′\\0′
    cout<<"array c:"<<c<<endl;    //显示字符数组c中的字符
    return 0;
}

以字符串流为中介交换数据

#include <strstream>
#include<iostream>
using namespace std;
int main( )
{
    char c[50]="12 34 65 -23 -32 33 61 99 321 32";
    int a[10],i,j,t;
    cout<<"array c:"<<c<<endl;//显示字符数组中的字符串
    istrstream strin(c,sizeof(c));    //建立输入串流对象strin并与字符数组c关联
    for(i=0; i<10; i++)
        strin>>a[i];                     //从字符数组c读入10个整数赋给整型数组a
    cout<<"array a:";
    for(i=0; i<10; i++)
        cout<<a[i]<<" ";                 //显示整型数组a各元素
    cout<<endl;
    for(i=0; i<9; i++)                 //用起泡法对数组a排序
        for(j=0; j<9-i; j++)
            if(a[j]>a[j+1])
            {
                t=a[j];
                a[j]=a[j+1];
                a[j+1]=t;
            }
    ostrstream strout(c,sizeof(c));    //建立输出串流对象strout并与字符数组c关联
    for(i=0; i<10; i++)
        strout<<a[i]<<" ";               //将10个整数存放在字符数组c
    strout<<ends;                      //加入′\\0′
    cout<<"array c:"<<c<<endl;         //显示字符数组c
    return 0;
}
时间: 2024-09-19 19:29:40

C++语言基础 例程 字符串流的相关文章

C++语言基础 例程 重载流插入运算符和流提取运算符

贺老师的教学链接  本课讲解 重载流插入运算符"<<" #include <iostream> using namespace std; class Complex { public: Complex( ) { real=0; imag=0; } Complex(double r,double i) { real=r; imag=i; } Complex operator + (Complex &c2); //运算符"+"重载为成员函

C++语言基础 例程 字符串类

贺老师的教学链接 C++中的新成份--string类型 (1) #include <iostream> #include <cstring> using namespace std; int main( ) { char str1[50],str2[50],temp[50]; cout<<"please input strings:"; cin>>str1>>str2; if(strcmp(str1, str2)>0)

C++语言基础 例程 C++的输入输出与流对象

贺老师的教学链接  本课讲解 体会缓冲区 #include <iostream> using namespace std; int main() { int n[5]; for(int i=0; i<5; i++) { cin>>n[i]; cout<<n[i]<<endl; } return 0; }

C++语言基础 例程 标准输出流

贺老师的教学链接  本课讲解 cerr流对象使用:解方程ax^2+bx+c=0 //解一元二次方程ax^2+bx+c=0:从键盘输入a,b,c的值,求x1和x2.如果a=0或b2-4ac<0,输出出错信息. #include<iostream> #include <cmath> #include<iomanip> using namespace std; int main( ) { float a,b,c,delta; cout<<"plea

C++语言基础 例程 C++中的输入和输出

贺老师的教学链接 程序将自行识别符号 #include <iostream> using namespace std; int main() { int a,b; char op; cin>>a>>op>>b cout<<"result: "<<'\n'; cout<<"a: "<<a<<'\n'; cout<<"b: "<

C++语言基础 例程 文本文件的读写

贺老师的教学链接  本课讲解 示例:将数据写入ASCII文件 #include <iostream> #include <fstream> #include <cstdlib> using namespace std; int main( ) { int a[10]; ofstream outfile("f1.dat",ios::out);//定义文件流对象,打开磁盘文件"f1.dat" if(!outfile) //如果打开失败

C++语言基础 例程 标准输入流

贺老师的教学链接  本课讲解 例: 输入个数不确定的成绩 #include <iostream> using namespace std; int main( ) { float grade; cout<<"enter grade:"; while(cin>>grade)//能从cin流读取数据 { if(grade>=85) cout<<grade<<" GOOD!"<<endl; if

C++语言基础 例程 文件的随机读写

贺老师的教学链接  本课讲解 示例:写到尾再从头读 #include <iostream> #include <fstream> #include <cstdlib> using namespace std; int main( ) { int a[10], b[10]; fstream iofile("f1.dat",ios::in|ios::out); if(!iofile) { cerr<<"open error!&quo

C++语言基础 例程 虚析构函数

贺老师的教学链接  本课讲解 问题的由来 #include <iostream> using namespace std; class Point { public: Point( ) { } ~Point() { cout<<"executing Point destructor"<<endl; } }; class Circle:public Point { public: Circle( ) { } ~Circle( ) { cout<&