zoukankan      html  css  js  c++  java
  • IO流(2)


    #include "stdafx.h"
    #include <fstream.h>
    #include <string.h>

    int main(int argc, char* argv[])
    {
        ofstream of;
       
        of.open("ofstream.txt", ios::out | ios::binary);
       
        if ( !of.fail())
        {
            of << 10;
            of.close();
        }
       
        char szBuff[256] = {0};
        ifstream ifile;
       
        ifile.open("readme.txt");
       
        if (!ifile.fail())
        {
            while (!ifile.eof())
            {
                memset(szBuff, 0, sizeof(szBuff));
                ifile.read(szBuff, sizeof(szBuff) - sizeof(char));
                cout << szBuff << flush;
            }
            ifile.close();
        }
       
        ofstream ofile1;
       
        ofile1.open("ofstream2.txt", ios::ate);
       
        if ( !ofile1.fail() )
        {
            ofile1.seekp(6, ios::beg);
            ofile1.write("WOLRD", strlen("WOLRD"));
            ofile1.close();
        }
        return 0;
    }

  • 相关阅读:
    Haproxy 【转载】
    Nginx介绍
    Day 13 进程和线程
    运维第一课
    面试bb
    Day 12 字符串和正则表达式
    Day 11 文件和异常
    Day10 图形用户界面和游戏开发
    Day9 面向对象进阶
    day8 面向对象编程基础
  • 原文地址:https://www.cnblogs.com/w413133157/p/1666799.html
Copyright © 2011-2022 走看看