青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

C++研究

C++細節深度探索及軟件工程

  C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
  37 隨筆 :: 0 文章 :: 74 評論 :: 0 Trackbacks



Like C, C++ does not have built-in input/output capability. All C++ compilers, however, come bundled with a systematic, object-oriented I/O package, known as the iostream classes. The stream is the central concept of the iostream classes. You can think of a stream object as a smart file that acts as a source and destination for bytes. A stream's characteristics are determined by its class and by customized insertion and extraction operators.

Through device drivers, the disk operating system deals with the keyboard, screen, printer, and communication ports as extended files. The iostream classes interact with these extended files. Built-in classes support reading from and writing to memory with syntax identical to that for disk I/O, which makes it easy to derive stream classes.


Chang Xinglong , Computer Sci & tec
TianJin university , 300072
TianJin ,China

Msn: cxl82116@msn.com QQ:286259397

OutputStreams

An output stream object is a destination for bytes. The three most important output stream classes are ostream, ofstream, and ostrstream.

The ostream class, through the derived class basic_ostream, supports the predefined stream objects:

  • cout   standard output

  • cerr   standard error with limited buffering

  • clog   similar to cerr but with full buffering

Objects are rarely constructed from ostream; predefined objects are generally used. In some cases, you can reassign predefined objects after program startup. The ostream class, which can be configured for buffered or unbuffered operation, is best suited to sequential text-mode output. All functionality of the base class, ios, is included in ostream. If you construct an object of class ostream, you must specify a streambuf object to the constructor.

The ofstream class supports disk file output. If you need an output-only disk, construct an object of class ofstream. You can specify whether ofstream objects accept binary or text-mode data when constructing the ofstream object or when calling the open member function of the object. Many formatting options and member functions apply to ofstream objects, and all functionality of the base classes ios and ostream is included.

If you specify a filename in the constructor, that file is automatically opened when the object is constructed. Otherwise, you can use the open member function after invoking the default constructor.

Like the run-time function sprintf, the ostrstream class supports output to in-memory strings. To create a string in memory using I/O stream formatting, construct an object of class ostrstream. Because ostrstream objects are write-only, your program must access the resulting string through a pointer to char.

You can construct an output file stream in one of two ways:

Use the default constructor, and then call the open member function.

ofstream myFile; // Static or on the stack
myFile.open( "filename" );

ofstream
* pmyFile = new ofstream; // On the heap
pmyFile->open( "filename" );
 
//Specify a filename and mode flags 
in the constructor call. 

ofstream myFile( 
"filename", ios_base::out);
 


To construct an output string stream, you can use one of two ostrstream constructors. One dynamically allocates its own storage, and the other requires the address and size of a preallocated buffer.

The dynamic constructor is used in the following way:

char* sp;
ostrstream myString;
mystring 
<< "this is a test" << ends;
sp 
= myString.str();  // Get a pointer to the string


The ends "manipulator" adds the necessary terminating null character to the string.

The constructor that requires the preallocated buffer is used in the following way:

char s[32];
ostrstream myString( s, 
sizeof( s ) );
myString 
<< "this is a test" << ends; // Text stored in s


Input Streams :

An input stream object is a source of bytes. The three most important input stream classes are istream, ifstream, and istrstream.

The istream class is best used for sequential text-mode input. You can configure objects of class istream for buffered or unbuffered operation. All functionality of the base class, ios, is included in istream. You will rarely construct objects from class istream. Instead, you will generally use the predefined cin object, which is actually an object of class ostream. In some cases, you can assign cin to other stream objects after program startup.

The ifstream class supports disk file input. If you need an input-only disk file, construct an object of class ifstream. You can specify binary or text-mode data. If you specify a filename in the constructor, the file is automatically opened when the object is constructed. Otherwise, you can use the open function after invoking the default constructor. Many formatting options and member functions apply to ifstream objects. All functionality of the base classes ios and istream is included in ifstream.

Like the library function sscanf, the istrstream class supports input from in-memory strings. To extract data from a character array that has a null terminator, allocate and initialize the string, then construct an object of class istrstream.

If you are using an input file stream (ifstream), you must associate that stream with a specific disk file. You can do this in the constructor, or you can use the open function. In either case, the arguments are the same.

You generally specify an ios_base::openmode flag when you open the file associated with an input stream (the default mode is ios::in). For a list of the open_mode flags, see The open Function. The flags can be combined with the bitwise OR ( | ) operator.

To read a file, first use the fail member function to determine whether it exists:

 

istream ifile( "FILENAME" );
if ( ifile.fail() )
// The file does not exist ...


The Get Function:

The unformatted get member function works like the >> operator with two exceptions. First, the get function includes white-space characters, whereas the extractor excludes white space when the skipws flag is set (the default). Second, the get function is less likely to cause a tied output stream (cout, for example) to be flushed.

A variation of the get function specifies a buffer address and the maximum number of characters to read. This is useful for limiting the number of characters sent to a specific variable, as this example shows:

/ ioo_get_function.cpp
// compile with: /EHsc
// Type up to 24 characters and a terminating character. 
// Any remaining characters can be extracted later.
#include <iostream>
using namespace std;

int main()
{
   
char line[25];
   cout 
<< " Type a line terminated by carriage return\n>";
   cin.
get( line, 25 );
   cout 
<< line << endl;
}

 

Input
  
1234
 

Sample Output

1234
 


The getline Function
The getline member function is similar to the get function. Both functions allow a third argument that specifies the terminating character for input. The default value is the newline character. Both functions reserve one character for the required terminating character. However, get leaves the terminating character in the stream and getline removes the terminating character.

The following example specifies a terminating character for the input stream:

 

// getline_func.cpp
// compile with: /EHsc
#include <iostream>
using namespace std;

int main( )
{
   
char line[100];
   cout 
<< " Type a line terminated by 't'" << endl;
   cin.getline( line, 
100't' );
   cout 
<< line;
}

 

Input
  
test
 

The close Function for Input Streams

The close member function closes the disk file associated with an input file stream and frees the operating system file handle. The ifstream destructor closes the file for you, but you can use the close function if you need to open another file for the same stream object.


[reference:  MSDN & Some other books about C++ Basic]

posted on 2007-06-20 03:09 常興龍 閱讀(6922) 評論(3)  編輯 收藏 引用 所屬分類: STL

評論

# re: C++ streams (How to use ostream & istream ?) 2007-06-21 17:29 pass86
英文比較好啊。  回復  更多評論
  

# re: C++ streams (How to use ostream & istream ?) 2007-09-24 03:54 Gavin
The article is good. But it lacks of some in-depth discussions, such as how buffered/unbuffered stream constructed/used/typical usage, what's the relationship/ownership between stream and streambuf,..., etc.

Futher, I doubt that:
ostrstream myString;
mystring << "this is a test" << ends;
sp = myString.str(); // Get a pointer to the string

The ends "manipulator" adds the necessary terminating null character to the string.

Is above conclusion is correct? and why??  回復  更多評論
  

# re: C++ streams (How to use ostream & istream ?) 2008-07-22 12:12 踏雪赤兔
C++ streams is too slow in my opinion~   回復  更多評論
  

> hi的博客
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美成人第一页| 国产视频在线一区二区 | 亚洲区免费影片| 亚洲欧美制服另类日韩| 亚洲精品偷拍| 99在线热播精品免费99热| 韩日成人在线| 影音先锋成人资源站| 国内自拍视频一区二区三区| 国产精品永久入口久久久| 国产精品成人一区二区三区夜夜夜| 久久理论片午夜琪琪电影网| 久久久久久有精品国产| 久久精品在线观看| 欧美成人四级电影| 欧美日韩日日骚| 国产精品久久久久久福利一牛影视| 欧美三区不卡| 激情丁香综合| 一区二区三区免费观看| 久久国产婷婷国产香蕉| 久久婷婷成人综合色| 99riav国产精品| 久久国产夜色精品鲁鲁99| 欧美成人精品在线观看| 国产精品免费看| 国产精品国产三级国产aⅴ9色| 欧美日韩精选| 国产区精品在线观看| 国产一区二区在线观看免费| 久久免费视频一区| 欧美日韩精品免费看 | 免费在线看一区| 99精品视频免费全部在线| 在线观看日韩| 欧美一区二区精品久久911| 久久这里只有| 亚洲自拍都市欧美小说| 麻豆精品在线观看| 在线观看欧美黄色| 久久久美女艺术照精彩视频福利播放| 亚洲日本激情| 欧美精品福利在线| 亚洲清纯自拍| 国产精品视频一区二区三区| 亚洲国产专区校园欧美| 欧美激情五月| 欧美国产在线电影| 亚洲精选一区二区| 日韩一二三在线视频播| 国产精品高清免费在线观看| 亚洲一区在线免费观看| 99re66热这里只有精品4| 欧美日韩一区二区在线观看| 国产精品99久久99久久久二8 | 欧美在线视频网站| 亚洲国产欧美一区| 欧美日韩国产综合视频在线观看中文 | 亚洲第一成人在线| 免费久久99精品国产自| 亚洲精品一区二区在线观看| 欧美中文字幕不卡| 亚洲电影网站| 欧美激情视频一区二区三区不卡| 你懂的网址国产 欧美| 最新成人av在线| 午夜精品久久一牛影视| 日韩午夜av| 久久九九国产精品| 在线视频欧美精品| 久久欧美肥婆一二区| 亚洲香蕉网站| 欧美大片在线影院| 久久久久久久欧美精品| 欧美日韩亚洲免费| 亚洲二区精品| 亚洲国产精品v| 久久久99免费视频| 久久精品观看| 国产精品一区免费视频| 亚洲欧洲日产国产综合网| 激情五月***国产精品| 香蕉久久夜色精品国产| 久久久久久久久久码影片| 国产欧亚日韩视频| 久久成人国产精品| 久久人体大胆视频| 亚洲电影在线观看| 亚洲国产美女精品久久久久∴| 午夜电影亚洲| 久久精品夜色噜噜亚洲a∨| 国产午夜精品久久久| 亚洲免费一级电影| 麻豆精品在线视频| 91久久久久久久久久久久久| 欧美xart系列在线观看| 亚洲日韩视频| 欧美一区午夜精品| 亚洲国产你懂的| 欧美日韩亚洲综合| 亚洲综合色丁香婷婷六月图片| 久久国产福利国产秒拍| 99国产精品久久久久久久| 久久午夜羞羞影院免费观看| 欧美日韩综合视频| 久久精品99国产精品酒店日本| 久久久精品国产免大香伊| 99视频+国产日韩欧美| 欧美亚洲第一区| 老司机午夜精品视频| 亚洲欧美另类在线观看| 亚洲蜜桃精久久久久久久| 亚洲欧美国产毛片在线| 亚洲免费av网站| 亚洲电影免费在线| 影音先锋久久资源网| 国产精品一卡二| 国产精品久久国产精品99gif| 久久一区亚洲| 美女久久网站| 久久一区亚洲| 欧美v国产在线一区二区三区| 欧美伊人影院| 久久久久国产精品人| 一区二区欧美在线观看| 伊人激情综合| 亚洲国产人成综合网站| 亚洲国产欧美另类丝袜| 一区二区福利| 午夜精品短视频| 久久久久久综合| 欧美激情成人在线| 亚洲最新中文字幕| 亚洲一区二区视频在线| 亚洲欧美成aⅴ人在线观看| 欧美有码在线视频| 久久嫩草精品久久久久| 欧美激情一级片一区二区| 欧美三级特黄| 一区二区在线视频观看| 亚洲精品九九| 久久国产精品毛片| 欧美激情欧美狂野欧美精品| 中文久久乱码一区二区| 久久影院亚洲| 国产精品永久免费在线| 日韩小视频在线观看| 久久久人成影片一区二区三区| av成人毛片| 91久久久久久| 欧美**人妖| 亚洲欧美一区二区三区在线| 蜜臀a∨国产成人精品| 国产欧美亚洲日本| 亚洲丝袜av一区| 亚洲三级影片| 欧美大色视频| 亚洲日本中文字幕区| 久色婷婷小香蕉久久| 亚洲欧洲av一区二区| 国产精品久久7| 亚洲女人天堂成人av在线| 亚洲人体大胆视频| 欧美激情一区二区三区在线视频| 欧美一区二视频| 国产精品美女一区二区| 亚洲一区二区在线免费观看| 午夜精品福利一区二区三区av | 在线成人欧美| 欧美成人精品一区| 欧美黄色成人网| 亚洲免费中文字幕| 久久99伊人| 亚洲人精品午夜在线观看| 亚洲精品在线免费| 国产精品天天摸av网| 久久一区二区三区四区| 欧美成熟视频| 欧美一区二区大片| 久久综合中文| 欧美在线免费观看亚洲| 久久夜色精品| 欧美在线一二三| 欧美xart系列高清| 欧美一区二区大片| 欧美精品在线一区二区| 在线视频日本亚洲性| 国产精品久久久久久久久果冻传媒 | 亚洲国产精品一区二区三区| 亚洲卡通欧美制服中文| 99在线|亚洲一区二区| 夜夜嗨av一区二区三区中文字幕| 国产自产高清不卡| 亚洲毛片播放| 亚洲国产成人av好男人在线观看| 一区二区欧美在线| 一区二区激情| 欧美母乳在线| 一本大道久久精品懂色aⅴ| 亚洲精品一区二区三区不|