logistics
play

Logistics Project IOStreams II Part 2 (water) due Sunday, Oct 16 - PDF document

Logistics Project IOStreams II Part 2 (water) due Sunday, Oct 16 th Feedback by Monday Part 3 (block) due Sunday, Oct 30 Questions? Exam Logistics Exam 2 Final exam Thursday, October 27 Good newsbad


  1. Logistics • Project IOStreams II – Part 2 (water) due Sunday, Oct 16 th • Feedback by Monday – Part 3 (block) due Sunday, Oct 30 • Questions? Exam Logistics • Exam 2 • Final exam – Thursday, October 27 – Good news…bad news – Good news • Last day of finals, November 18 th – More details on Thursday. – Bad news • 8am-10am – Room • 01-3338 Plan for this week IOStreams • I/O Week • Suite of classes for performing I/O in C++ – Yesterday: IOStreams 1 • Reading and Writing: – Today: IOStreams 2 – Standard input and output – Thursday: IOStreams 3 – File input and output – Input and Output to strings 1

  2. Streams Streams • Like Java, Basic low level mechanism for I/O is • Unlike Java, the basic stream in C++ is the stream buffered. – Stream is a sequence of bytes – Used to increase efficiency – When the program writes something, it is put into a buffer in memory. – The output doesn't appear on the screen until the buffer is flushed (written) IOStream class inheritance Today • Today we will look at: cin is an istream – fstream – I/O to/from files – sstream – I/O to and from strings cout and cerr are ostreams – Writing your own << and >> operators. Other classes inherit from these and add I/O to/from a device, string, or memory IOStream Class Hierarchy fstream • Reading and Writing from Files – ifstream (inherits from istream ) for input files – ofstream (inherits from ostream ) for output files – fstream (inherits from iostream ) for files that can support both input and output. 2

  3. Constructors Open / Close • open( const char *name, int • Default constuctors – ifstream(), ifstream(), fstream() mode, int perm = 0644 ); – Creates an unopened file. – Opens a file and attaches to a stream • Can use open() to attach to a file • close(); • Construct and Open – ifstream( const char *name, int mode = ios::in, – closes the file associated with a stream. The int perm = 0644 ); – ofstream( const char *name, int mode = ios::out, stream can be reopened with another file after int perm = 0644 ); this. – fstream( const char *name, int mode, int perm = 0644 ); – badbit set if open fails Using fstreams Using fstreams • fstreams support random access • Since fstreams are derived from istream and – istream &istream::seekg( streamoff ostream, I/O is the same as using cin and offset, ios::seek_dir where ); cout . – ostream &ostream::seekp( streamoff offset, ios::seek_dir where ); • ios::seek_dir = { ios::begin, ios:end, ios::cur}; – these are actually implemented in istream and ostream , and can be used on any stream that is associated with a seekable device fstreams sstreams • Questions? • adds functionality to do “input” and “output” from/to arrays of characters in memory. • no actual I/O is done; however, the conversions performed are exactly the same as those we have already covered. • C++ means of doing atoi(), itoa() 3

  4. sstreams sstreams • E.g. commandline arguments • One reason to use an istrstream is to do conversions on data that have already been main (int argc, char *argv[]) read in. { int intArg; float floatArg; istringstream ints (argv[1]); istringstream floats (argv[2]); ints >> intArg; floats >> floatArg; … } sstreams sstreams char buffer[BUFLEN]; • Example: consider a program whose input is supposed to contain four values on each line: int a,b,c,d; 1 2 3 4 while( cin.getline( buffer, BUFLEN ) ) { 5 6 7 8 istringstream S (buffer); 9 10 11 12 S >> a >> b >> c >> d; – Consider the obvious approach: … • cin >> a >> b >> c >> d; • The extractions will skip white space automatically. If the } input is erroneous, for example: 1 2 3 4 5 6 7 9 10 11 12 sstreams sstreams • E.g. itoa (toString) • Questions? char buffer[20]; ostringstream outs (buffer); int i = 20; outs << I; 4

  5. IOStream Class Hierarchy Insertion and Extraction • Inserters and extractors for built-in datatypes (like int, double, float , etc.) are predefined member functions of the IOStream classes. • It would be nice if we can do I/O on objects of our own classes in the same manner as the basic datatypes. Operator overloading Insertion and Extraction int i=5; • All C++ operators can be overloaded on a double d = 7.0; class by class basis. myClass foo (7); • Overloaded operators call specially named class methods. – Keyword operator followed by operator to cout << i << d << foo; be overloaded. – E.g • operator+ Operator overloading Operator overloading • Overloaded operators can also be defined • Friends globally as non-members (outside of the – By declaring a function as a friend , we allow class definition) it access to a class’s private data members (both data and methods) 5

  6. Operator overloading Insertion and Extraction – writing your own • Global operator definitions • Recall how operators work: friend Complex operator+( Complex &c1, Complex &c2 ); Point P (0,0); friend Complex operator-(Complex &c1); cout << P; friend bool operator== (const Complex &c1, const Complex &c2); is the same as: friend Complex& operator+= (Complex &c1, const Complex &c2); cout.operator<< (P); friend Complex& operator+= (Complex &c, double d); however, who can predict the need for an operator for each class? Writing an inserter ( operator<< ) Insertion and Extraction – writing your own • Instead, the compiler looks for: 1. The first argument should be a reference to an ostream . The second argument should be a constant – operator<<( cout, P ); reference to your class. • Note that this can’t be a member of Point The function should return a reference to an ostream 2. since cout is the first argument. so that insertions can be chained. 3. The body of the function should perform whatever output is appropriate for your class, but nothing more! • Take home message: operator<< and 4. If you need to access the private data members of your operator>> are defined outside of a class directly, then your class must declare this function class. to be a friend Writing an inserter ( operator<< ) Writing an extractor ( operator>> ) friend ostream &operator<<( ostream &out, const • Like inserter except: Point &p ) – Must handle possible errors { out << ’(’ << p.x << ’,’ << p.y << ’)’; – Argument cannot be const reference. return out; – Almost surely will have to declare as a } friend . Output: (0,0) 6

  7. Writing an extractor ( operator>> ) Writing an extractor ( operator>> ) friend istream &operator>> (istream &in, Point &p) • Things to note: { char c; – Checks to see if in same format as output. int ok = FALSE; – Stops reading as soon as an error is found. in >> c; if (c == ‘(‘)) { – Sets failbit if format is not correct. in >> p.x >> c; if (c == ‘,’) { in >> p.y >> c; if (c == ‘)’) ok = TRUE; } } • Questions? if (!ok) in.clear (in.rdstate() | ios::failbit return in; } Summary • fstream – I/O to/from files • sstream – I/O to/from strings (char arrays) • Rolling your own extractors and inserters. • Questions? 7

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend