Tagged Questions

24
votes
4answers
13k views

How to properly overload the << operator for an ostream?

I am writing a small matrix library in C++ for matrix operations. However my compiler complaints, where before it did not. This code was left on a shelf for 6 months and in between I upgraded my ...
4
votes
2answers
51 views

Are std::showbase and std::showpos mutually exclusive?

This question arose from a discussion I was having about the correct way to output a numeric value using the usual ostream & operator << (ostream &, some_type) for a numeric type in C++. ...
4
votes
3answers
472 views

How do the stream manipulators work?

It is well known that the user can define stream manipulators like this: ostream& tab(ostream & output) { return output<< '\t'; } And this can be used in main() like this: ...
3
votes
1answer
326 views

inheriting ostream and streambuf problem with xsputn and overflow

I have been doing research on creating my own ostream and along with that a streambuf to handle the buffer for my ostream. I actually have most of it working, I can insert (<<) into my stream ...
3
votes
1answer
172 views

Why is ostream::operator<< a global function for char parameters?

Acording to http://www.cplusplus.com/reference/iostream/ostream/operator%3C%3C/ the operator<< method defined on e.g. streambuf is a member of ostream, but for char / char * it is a global ...
3
votes
2answers
206 views

Reseting an ostream, C++

I have 2 different ostreams, one of them cerr, using the same streambuffer, I have some libraries in that might have modified cerr somehow,(flags? format modifiers?). cerr.rdbuf(&mystreambuffer); ...
3
votes
4answers
2k views

C++ - Passing std::ostream to a function

I thought of a small debug inline function in C++: void inline debug( int debug_level, ostream& out ) { if ( debug_level <= verbosity ) { out.flush(); } else { ...
1
vote
5answers
140 views

How should I correctly assign cout to a static ostream reference variable?

I'm defining a class like this: class StaticRuntimeContext { public: enum Verbosity { kHIGH, kMEDIUM, kLOW, kSILENT }; static void Construct(); static std::ostream& ...
1
vote
7answers
285 views

<< Operator Rewrite to cout int and double values

I need to rewrite the << operator so that it can cout values for hour (int) and temperature (double). I think I've included all necessary sections. Thanks in advance. struct Reading { int ...
0
votes
0answers
171 views

<< Operator Rewrite. Error from struct “cannot be used as a function” [closed]

Possible Duplicate: C++: << Operator Rewrite to cout int and double values I need to rewrite the << operator so that it can cout values for hour (int) and temperature (double). ...