1.C++ I/O各类之间的继承关系图

参考网址:

  http://www.cplusplus.com/reference/iolibrary/

Note:

  在程序中包含iostream文件将自动创建8个流对象(4个用于窄字符流, 4个用于宽字符流),如下:

cin  --标准输入流,该流被关联到标准输入设备(通常为键盘)    ----> wcin

cout  --标准输入流,该流被关联到标准输出设备(通常为显示器)    ----> wcout

cerr   --标准错误流,类似cout,但cerr流没有缓冲区        ----> wcerr

clog  --标准错误流,类似cerr,但clog流拥有缓冲区        ----> wlog

  由上图可知,cin 是一个istream对象,拥有istream的相关成员函数; cout是一个ostream对象,拥有ostream的相关成员函数和数据成员

2.I/O 常见的成员函数

对于istream类而言,其常见的成员函数如下(以cin对象实例):

  istream::get

    --istream对get方法进行了重载,常见的调用get的形式有4种,如下:

      1) int get();    //读取下一个字符,返回该字符的ascii码

      2) istream & get(char & c);  //读取下一个字符,并将其赋值给字符变量 c

      3) istream & get(char *  s, streamsize n);  //从输入流中读取指定大小的字节(参数n),并存储到s所指向的地址空间中

      4) istream & get(char * s, streamsize n, char delim);  //冲输入缓冲区中读取n字节,并存储到s指向的存储空间中

    Note:

      1) get的第3种形式和第4种形式,均读区最多n字节的内容;不同之处在于

      istream & get(char *  s, streamsize n);在读取n字节或遇到换行符时,停止读取

      istream & get(char * s, streamsize n, char delim);在读取n字节或遇到delim指定的分隔符时停止读取

      形式3相当于如下的形式4样式:

      get(char *  s, streamsize n) ----> get(char * s, streamsize n, '\n');

      2) get的后两种形式中,当读取的字符超过n指定的值时,get不会重置流状态

  istream::getline

    istream & getline(char * s, streamsize n);

    istream & getline(char * s, streamsize n, char delim);

    Note:

      getline 与 get都可以用来读取一行输入,不同在于

    1) getline读取一行时,连同换行符'\n'一起从输入流中读取,然后丢弃\n,在读取的字符最后加上\0空字符,以表示字符串结尾

     get不会读取\n换行符,\n依然保留在输入流中,以备后续的读取

    2) getline读取超过n个字节时,重置流状态,设置failbit等流标志位;get函数则不会进行该操作

    

  istream::ignore

    istream & ignore(streamsize n, char delim = EOF);      //提取并丢弃字符

  istream::gcout

    streamsize gcount() const;        //获取最后一次非格式化读取的字节数

  istream::peek

    int peek();          //查看输入流中下一个字符,返回该字符的ascii码

  Note: peek仅仅查看,并不从输入流中读取字符

  istream::putback

    istream  & putback(char c);      //将字符c放回输入流中(插入到输入流中,以备下一次读取)

  istream::read

    istream & read(char * s, streamsize n);    //从输入流中读取n字节,并存储到s指定的存储空间中

  其他:tellg , seekg            //用于输入流定位的函数

对于ostream类而言,其常见的成员函数如下(以cout对象实例):

  ostream::put

    ostream & put(char c);      //将字符c插入到输出流中,即打印字符c

  ostream::write

    ostream & write(const char * s, streamsize n);    //将s从的前n个字节插入到输入流中

  其他:

    tellp, seekp            //用于输出流定位的函数

    flush                 //刷新输出流

3.文件操作

  ifstream::open

    void open(const char * filename, ios_base::openmode mode = ios_base::in);  //打开filename文件,并将它与ifstream对象关联

    void open(const string & filename, ios_base::openmode mode = ios_base::in);

  ifstream::is_open

    bool is_open() const;    //检测文件是否与ifstream对象关联

  ifstream::close

    void close();        //关闭ifstream对象与文件的链接

  ofstream::open

    void open(const char * filename, ios_base::openmode mode = ios_base::out);

    void open(const string & filename, ios_base:openmode mode = ios_base::out);

  其他:ofstream::is_open, ofstream::close与ifstream相同

  Note:

    1) ios_base::openmode指定了打开文件的模式,常见的模式有:

    ios_base::app      //append

    ios_base::ate      //at end

    ios_base::in       //input

    ios_base::out      //output

    ios_base::trunc     //truncate

    ios_base::binary     //binary

    2)可将多个openmode通过 | (与运算)进行组合,如:

      ios_base::out|ios_base::trunc

  

  

C++ Input & Output的更多相关文章

  1. PHP-FPM-failed to ptrace(PEEKDATA) pid 123: Input/output error

    If you're running PHP-FPM you can see these kind of errors in your PHP-FPM logs. $ tail -f php-fpm.l ...

  2. NFS挂载异常 mount.nfs: Input/output error

    [root@localhost ~]# vi /etc/exports #增加/nfs 192.168.10.132(rw,no_root_squash,no_all_squash,async) [r ...

  3. BIOS(Basic Input/Output System)是基本输入输出系统的简称

    BIOS(Basic Input/Output System)是基本输入输出系统的简称 介绍 操作系统老师说,平时面试学生或者毕业答辩的时候他都会问这个问题,可见这个问题对于计算机专业的学生来说是如此 ...

  4. read()、write()返回 Input/output error, Device or resource busy解决

    遇到的问题,通过I2C总线读.写(read.write)fs8816加密芯片,报错如下: read str failed,error= Input/output error! write str fa ...

  5. Angular 个人深究(三)【由Input&Output引起的】

    Angular 个人深究(三)[由Input&Output引起的] 注:最近项目在做别的事情,angular学习停滞了 1.Angular 中 @Input与@Output的使用 //test ...

  6. Docker 在转发端口时的这个错误Error starting userland proxy: mkdir /port/tcp:0.0.0.0:3306:tcp:172.17.0.2:3306: input/output error.

    from:https://www.v2ex.com/amp/t/463719 系统环境是 Windows 10 Pro,Docker 版本 18.03.1-ce,电脑开机之后第一次运行 docker ...

  7. dpdk EAL: Error reading from file descriptor 23: Input/output error

    执行test程序时输出: EAL: Error reading from file descriptor 23: Input/output error 原因: 在虚拟机添加的网卡,dpdk不支持导致的 ...

  8. html5 填表 表单 input output 与表单验证

    1.<output>     Js计算结果 <form oninput="res.value = num1.valueAsNumber*num2.valueAsNumber ...

  9. mount_cd9660:/dev/acd0: Input/output error

    mount -t cd9660 /dev/acd0 /cdrom g_vfs_done():acd0[READ(offset32768, length=204]error =5 mount_cd966 ...

  10. Input/output subsystem having an integrated advanced programmable interrupt controller for use in a personal computer

    A computer system is described having one or more host processors, a host chipset and an input/outpu ...

随机推荐

  1. C++面试经常涉及的概念1

    1.new.delete.malloc.free关系 delete会调用对象的析构函数,和new对应.free只会释放内存,new调用构造函数.malloc与free是C++/C语言的标准库函数,ne ...

  2. 扩大或缩小undo表空间

    ***********************************************声明*************************************************** ...

  3. Ubuntu_16.04 配置 Apache Rwrite URL 重写

    Ubuntu Apache配置Rwrite URL重写 0. apache目录

  4. [转]Ubuntu 软件安装、查找、卸载--apt-get、apt-cache命令安全

    # apt-get update——在修改/etc/apt/sources.list或者/etc/apt/preferences之後运行该命令.此外您需要定期运行这一命令以确保您的软件包列表是最新的. ...

  5. input输入框只能输入数字的功能

    Html代码 收藏代码 <input type="text" style="ime-mode:disabled;" onpaste="retur ...

  6. POJ 1840 Brainman(逆序对数)

    题目链接:http://poj.org/problem?id=1804 题意:给定一个序列a[],每次只允许交换相邻两个数,最少要交换多少次才能把它变成非递降序列. 思路:题目就是要求逆序对数,我们知 ...

  7. BZOJ 1489: [HNOI2009]双递增序( dp )

    dp(i, j)表示选第i个, 且当前序列长度为j, 另一个序列的最后一个元素的最小值...然后根据上一个是哪个序列选的讨论一下就行了...奇怪的dp... --------------------- ...

  8. BZOJ 2733: [HNOI2012]永无乡(treap + 启发式合并 + 并查集)

    不难...treap + 启发式合并 + 并查集 搞搞就行了 --------------------------------------------------------------------- ...

  9. Structs

    1.服务端的运行程序 2.Servlet的三个方法 init service:抽象方法 destroy 3.步骤 (1).在web.xml中 <servlet> <servlet-n ...

  10. A Byte of Python 笔记(5)函数:定义、形参、局部变量、默认参数、关键参数

    第7章  函数 函数是重要的程序段.它们允许你给一块语句一个名称,然后你可以在程序的任何地方使用这个名称任意多次地运行这个语句块.这被称为 调用 函数. 定义函数 函数通过 def 关键字定义.def ...