C++ Input & Output

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

  

  

时间: 2024-10-07 12:44:57

C++ Input & Output的相关文章

数据库服务器Input/output error (故障20170122)

描述: 数据库系统出现告警,登陆查看使用系统命令报错,提示Input/output error 模拟故障处理过程: 检查文件系统时,该文件系统必须卸载.当出现错误时fsck会提示是否修复, 可以用-y参数:不提示是否修复 fsck - check and repair a Linux file system # df -h Filesystem            Size  Used Avail Use% Mounted on /dev/mapper/vg_mysql80-lv_root 2

解决NGINX+PHP-FPM failed to ptrace(PEEKDATA) Input/output error出错问题

网站总是出现bad gateway 提示,时有,时无,查看了一下日志,居然出现一堆错误,如下 [29-Mar-2014 22:40:10] ERROR: failed to ptrace(PEEKDATA) pid 4276: Input/output error (5) [29-Mar-2014 22:53:54] ERROR: failed to ptrace(PEEKDATA) pid 4319: Input/output error (5) [29-Mar-2014 22:56:30]

解决ubuntu挂载NTFS磁盘时出现input/output error

错误内容如下: Error mounting: mount exited with exit code 13: ntfs_attr_pread_i: ntfs_pread failed: Input/output error Failed to read NTFS $Bitmap: Input/output error NTFS is either inconsistent, or there is a hardware fault, or it's a SoftRAID/FakeRAID ha

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/output (I/O) subsystem. The host processors are connected to the host chipset by a host bus. The host chipset is connected to the input/output subsystem by

黑马程序员——java基础---IO(input output)流字符流

黑马程序员——java基础---IO(input output)流字符流 ------Java培训.Android培训.iOS培训..Net培训.期待与您交流! ------- io(input output)流特点: 1,io流用来处理数据之间的传输 2,java对数据的操作是通过流的方式: 3,java用于操作流的对象都在io包中: 4,流按操作数据分为两种:字节流和字符流: 5,流按流向分为:输入流和输出流. 注意:流只能操作数据,而不能操作文件. 3.IO流的常用基类: 1)字节流的抽象

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

1.<output>     Js计算结果 <form oninput="res.value = num1.valueAsNumber*num2.valueAsNumber"> <input type="number" id="num1"> X            <!-- 没有闭合</input> --> <input type="number" id=&q

Linux下“read failed after 0 of 4096 at 0: Input/output error”

1.故障描述( 在线移除一块被设置为pv格式的硬盘,提示unknown device报道):/dev/sdb1 /dev/sdc1 /dev/sdd1是组成/dev/vg_test/lvm_test的PV,这里我们模拟/dev/sdd1硬盘被直接断电了 [[email protected] mnt]# pvdisplay    /dev/sdd: read failed after 0 of 4096 at 0: Input/output error   /dev/sdd: read faile

JAVA学习分享Input Output

IO(Input  Output)流 IO流用来处理设备之间的数据传输 Java对数据的操作是通过流的方式 Java用于操作流的对象都在IO包中 流按操作数据分为两种:字节流与字符流. 流按流向分为:输入流,输出流. IO流常用基类 字节流的抽象基类: InputStream ,OutputStream. 字符流的抽象基类: Reader , Writer. 注:由这四个类派生出来的子类名称都是以其父类名作为子类名的后缀. (InputStream的子类FileInputStream.) (Re

PHP failed to ptrace(PEEKDATA) pid 1918: Input/output error (5) 解决

今天网站后台出现504,前台出现此错误信息: [14-May-2016 12:03:44] WARNING: [pool www] child 25347, script '/usr/data/ckl-sapi/baiduNotify.php' (request: "POST /baiduNotify.php") executing too slow (10.818417 sec), logging [14-May-2016 12:03:44] WARNING: [pool www] 

Reading and writing files in Java (Input/Output) - Tutorial

Java Input Output This tutorial explains how to read and write files via Java. Table of Contents 1. Java I/O (Input / Output) for files 1.1. Overview 1.2. Reading a file in Java 1.3. Writing a file in Java 1.4. How to identify the current directory 2