myline.cpp

来自「国外网站上的一些精典的C程序」· C++ 代码 · 共 77 行

CPP
77
字号
// myLine.cpp//// 13 Jun 93   Init array[0] = NUL in case it is reference before use//             memcpy() adjusted to also copy terminating NUL from is.get()//             when extending buffer//# include <iostream.h># include "myLine.h"# if defined(_MSC_VER)#  include <memory.h># else#  include <stdlib.h># endif    // Class implementationmyLine::myLine (short buflen)    : len(buflen), mybuf(new char[len]), xalloc(1){    mybuf[0] = 0;}myLine::myLine (char * usebuf, short buflen)    : len(buflen), mybuf(usebuf), xalloc(0){    mybuf[0] = 0;}myLine::~myLine (void){    if (xalloc)        delete [] mybuf;}istream &operator>> (istream & is, myLine & l){# if AUTO_GROW    if (!l.xalloc)              // It's not my buf, so it can't be grown    {# endif        is.get (l.mybuf, l.len);        if (is.peek() == '\n')            is.get();           // Remove newline from stream# if AUTO_GROW    }    else    {        int idx = 0;        l.mybuf[0] = 0;     // Terminate in case is.good() isn't        for (int eol = 0; !eol && is.good(); )        {            int toget = l.len - idx;            is.get (l.mybuf + idx, toget);            int chrs = is.gcount();            if (is.peek() == '\n')            {                ++eol;       // Must be eol or eof                is.get();    // Clear newline            }            else if (chrs)            {                // Extend buffer                idx += chrs; // Add to index                l.len = short(l.len + ALLOC_LEN);                char * tmp = new char[l.len];                memcpy (tmp, l.mybuf, idx + 1);                delete [] l.mybuf;                l.mybuf = tmp;            }        }    }# endif    return is;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?