 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
| • |
Notice
how similar the use of these operations is
|
|
|
|
to
the cin.get function.....
|
|
|
cin.get(ch);
|
|
|
| • |
This
should be a clue. cin therefore is an object of the
|
|
|
|
istream
class.
|
|
|
| • |
The
dot is the member access operator; it allows us to
|
|
|
|
access
a particular public member function defined within
|
|
|
the
istream class.
|
|
|
| • |
The
function get is therefore defined within the public
|
|
|
|
section
of the istream class
|
|