473,498 Members | 1,722 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

a stream manipulator

ax
my book says it is ok define

ostream& operator<<(ostream& (*p)(ostream ))
{ return (*p)( *this); }

ostream& endl(ostream& o)
{o.put('\n'); o.flush();}

but seems compiler says it is not correct because "<<" needs 2
arguments, so i wrote

ostream& operator<<(ostream& ostr, ostream& (*p)(ostream& ))
{ return (*p)( ostr ); }

ostream& endl(ostream& o)
{o.put('\n'); o.flush();}
and the compiler compile and run it when i write
cout << "jfjfjfj" << endl;

But i have some doubit. is the last right?

then i have not good understanding for objects ostream "ios" flags
"internal, uppercase". What is their purpose?

for istream "ios" what is the pourpose of
"left, right, internal, showbase, showpoint, uppercase, showpos,
scientific, fixed, "?
Jun 29 '06 #1
5 1563
ax wrote:
my book says it is ok define

ostream& operator<<(ostream& (*p)(ostream ))
{ return (*p)( *this); }
I hope the book also says that it's OK to define it *only* as
a *member* of 'ostream'. Otherwise, what's "this" doing there?
ostream& endl(ostream& o)
{o.put('\n'); o.flush();}

but seems compiler says it is not correct because "<<" needs 2
arguments, so i wrote

ostream& operator<<(ostream& ostr, ostream& (*p)(ostream& ))
{ return (*p)( ostr ); }
OK.
ostream& endl(ostream& o)
{o.put('\n'); o.flush();}
and the compiler compile and run it when i write
cout << "jfjfjfj" << endl;

But i have some doubit. is the last right?
Seems fine. If it compiles and does what you need, what could be
the problem? B-)
then i have not good understanding for objects ostream "ios" flags
"internal, uppercase". What is their purpose?
What does your favourite C++ book have to say about them? Are
you reading Kuehl and Langer's book on streams?
for istream "ios" what is the pourpose of
"left, right, internal, showbase, showpoint, uppercase, showpos,
scientific, fixed, "?


Get a good book that describes streams. Angelika Langer and Klaus
Kreft published one several years back, basically a textbook on C++
streams (ISBN: 0201183951).

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Jun 29 '06 #2
* ax:
my book says it is ok define

ostream& operator<<(ostream& (*p)(ostream ))
{ return (*p)( *this); }
Which book is that?

This could be a member function.

ostream& endl(ostream& o)
{o.put('\n'); o.flush();}

but seems compiler says it is not correct because "<<" needs 2
arguments, so i wrote

ostream& operator<<(ostream& ostr, ostream& (*p)(ostream& ))
{ return (*p)( ostr ); }

ostream& endl(ostream& o)
{o.put('\n'); o.flush();}
and the compiler compile and run it when i write
cout << "jfjfjfj" << endl;

But i have some doubit. is the last right?
No. You need to return a reference to the 'o' argument. Also, it's not
a good idea to use the same names as things in the std namespace.

then i have not good understanding for objects ostream "ios" flags
"internal, uppercase". What is their purpose?
I don't think the first is standard, although it could be. The second
sounds like a standard one. Look them up in your /documentation/.

for istream "ios" what is the pourpose of
"left, right, internal, showbase, showpoint, uppercase, showpos,
scientific, fixed, "?


Whether this is HOMEWORK or not, look them up in your /documentation/.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jun 29 '06 #3
ax
On Thu, 29 Jun 2006 16:31:03 +0200, "Alf P. Steinbach"
<al***@start.no> wrote:
* ax:
my book says it is ok define

ostream& operator<<(ostream& (*p)(ostream ))
{ return (*p)( *this); }
Which book is that?

This could be a member function.


if i have the
class X{
public:
X(){}
~X(){}
friend int f(X, int);
friend ostream& operator<<(ostream& , X& );
X& operator=(X&);
X& g(int, X&);
};

"member functions" for class X are all functions for the class X?
(X() ~X(), f, <<, =, g)
or they are there only "=", "g"?
ostream& endl(ostream& o)
{o.put('\n'); o.flush();}

but seems compiler says it is not correct because "<<" needs 2
arguments, so i wrote

ostream& operator<<(ostream& ostr, ostream& (*p)(ostream& ))
{ return (*p)( ostr ); }

ostream& endl(ostream& o)
{o.put('\n'); o.flush();}
and the compiler compile and run it when i write
cout << "jfjfjfj" << endl;

But i have some doubit. is the last right? No. You need to return a reference to the 'o' argument. Also, it's not
a good idea to use the same names as things in the std namespace.


return o;
ok i forgot to write it in the last endl (i copied the one of the book
and not the one in my code)
then i have not good understanding for objects ostream "ios" flags
"internal, uppercase". What is their purpose?


I don't think the first is standard, although it could be. The second
sounds like a standard one. Look them up in your /documentation/.

for istream "ios" what is the pourpose of
"left, right, internal, showbase, showpoint, uppercase, showpos,
scientific, fixed, "?


Whether this is HOMEWORK or not, look them up in your /documentation/.


what meaning is to define a "right" indentation for an input stream?
the same for showbase

is it the meaning: prog tell me it wants a hex value and i write 9 and
it doesn't accept it because the input stream has in its flag
"showbase" on?

Jun 29 '06 #4
ax
On Thu, 29 Jun 2006 10:27:56 -0400, "Victor Bazarov"
<v.********@comAcast.net> wrote:
ax wrote:
my book says it is ok define But i have some doubit. is the last right?
Seems fine. If it compiles and does what you need, what could be
the problem? B-)


my good C++ compiler allows all i imagine and all seems goes right
but i would like some feedback from humans because i see that everyone
use template "class <etc>" but i don't understand well, and don't
understand why ( because it seems i have all that i need without them)
then i have not good understanding for objects ostream "ios" flags
"internal, uppercase". What is their purpose?


What does your favourite C++ book have to say about them? Are
you reading Kuehl and Langer's book on streams?


no. i like the book i read
for istream "ios" what is the pourpose of
"left, right, internal, showbase, showpoint, uppercase, showpos,
scientific, fixed, "?


Get a good book that describes streams. Angelika Langer and Klaus
Kreft published one several years back, basically a textbook on C++
streams (ISBN: 0201183951).


basically i reinvent the hot water and so i write the ostream,
istream, strstram classes (but they are different) so i would question
why the use of these flags in an input stream
V

thank you
Jun 29 '06 #5
ax
On Thu, 29 Jun 2006 19:53:36 +0200, "ax" <aa@aa.aaa> wrote:
for istream "ios" what is the pourpose of
"left, right, internal, showbase, showpoint, uppercase, showpos,
scientific, fixed, "?


Whether this is HOMEWORK or not, look them up in your /documentation/.


what meaning is to define a "right" indentation for an input stream?
the same for showbase

is it the meaning: prog tell me it wants a hex value and i write 9 and
it doesn't accept it because the input stream has in its flag
"showbase" on?


so is there no answer?
Jun 30 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
3328
by: rwawryk | last post by:
Hi, Does anybody know how to implement parametrized stream operator (such as setw, setfill)? I need to put into the stream variable of type char* without terminating NULL. It would be great if I...
5
2162
by: Riku Jarvinen | last post by:
Hi everyone, I asked another question regarding this same subject about a week ago. See thread: ...
8
1778
by: stoptv | last post by:
Hello group, this is my dilemma: ------------------------------------------------------------------------ #include <iostream> using namespace std; // a regular manipulator ostream & hello(...
2
1422
by: Peteroid | last post by:
In the same spirit as setw( ) and setprecision( ), is there a stream manipulator that will fill in closing-zeroes on those fractions with a given setprecision( )? For example, if setprecision(3)...
6
3578
by: jack | last post by:
I have a class which overloads the insertion operator '<<' for every type that ostream handles. I do this so that I can use my class a direct replacement for cout and cerr where the insertion...
4
2141
by: John Friedland | last post by:
'printf' has a '%a' conversion for floating-point output: For example, printing '123456' with "|%13.4a|" produces | 0x1.e240p+16| I've looked through Josuttis and the header files, but I...
2
4470
Colloid Snake
by: Colloid Snake | last post by:
Hello, I was attempting to configure log4cpp to monitor some logs on my *nix box, and when I run 'make' I get this error message: # make g++ -DHAVE_CONFIG_H -I. -I. -I../include...
9
3958
by: barcaroller | last post by:
When I use an iostream manipulator in a cout statement, it seems to affect all subsequent cout statements. cout << x << endl; // dec by default cout << hex << x << endl; // hex cout <<...
6
2590
by: Dan Smithers | last post by:
I want to write my own class derived from the ostream class. I have been getting errors with my templates: First, I get an error writing a nested template. If I leave the function definition...
0
7125
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7002
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7165
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7205
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7379
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4910
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3093
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3085
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
656
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.