Tagged Questions

23
votes
3answers
12k 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 ...
9
votes
3answers
203 views

Support for const_string in std::ostream operator <<

I'm currently using the very clever package boost::const_string from http://conststring.sourceforge.net/ until http://libcxx.llvm.org/ is available pre-packaged on Ubuntu. libcxx's std::string also ...
8
votes
3answers
510 views

Printing an uninitialized bool using cout (C++)

I have a class with a bool data member that is not initialized by the constructor. If I do cout << x.myBoolDataMember; where x is an object of this class in which the bool has not been ...
6
votes
4answers
718 views

Using ostream as a reference (C++)

I have a homework assignment where the header file is provided to us, and is unchangeable. Im having trouble figuring out how to correctly use a "display" function, so here is the relevant code. The ...
6
votes
2answers
1k views

Setting minimum number of decimal places for std::ostream precision

Is there a way to set the "minimum" number of decimal places that a std::ostream will output? For example, say I have two unknown double variables that I want to print (values added here for the sake ...
5
votes
2answers
130 views

Why does assigning to a reference to std::ostream fail to compile?

I am using an abstract class std::ostream. There is the following reference: std::ostream &o = std::cout; If any condition is met I need to initialize o so that the output will be redirected ...
5
votes
1answer
323 views

Writting Unicode Characters to an OStream

I'm working with unicode/wide characters and I'm trying to create a toString method (Java ::toString equiv). Will ostream handle wide characters, if so is there a way to warn the consumer of the ...
5
votes
4answers
498 views

The result of int c=0; cout<<c++<<c;

I think it should be 01 but someone says its "undefined", any reason for that?
5
votes
4answers
14k views

how do I print an unsigned char as hex in c++ using ostream?

I want to work with unsigned 8-bit variables in C++. Either unsigned char or uint8_t do the trick as far as the arithmetic is concerned (which is expected, since AFAIK uint8_t is just an alias for ...
4
votes
2answers
40 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
2answers
97 views

How to save `std::vector<uchar>` into `std::ostream`?

We have created and filled some std::vector<uchar> with openCV imencode for example. Now we want to stream it for example into some http_lib which can take some sort of ostream (ostringstream) ...
4
votes
2answers
107 views

Programatically Ignore Cout

Does anybody know if there is a trick to toggle all the cout << functions to not print out visible output? I am trying to hack together some code written by me and some other people to put ...
4
votes
1answer
104 views

How to put our own function declaration in iostream library in c++?

ostream& tab (ostream &o) { return o << '\t'; } I want to put this declaration in iostream library..how can i do this??
4
votes
1answer
115 views

overloaded << insertion operator isn't working correctly

So I can't figure out why my insertion operator isn't working for my list class. I've looked at it for a while and I think the syntax is correct for overloading. Not sure on this one. Any hints as to ...
4
votes
4answers
389 views

Platform independent /dev/null in c++ [closed]

Possible Duplicate: Implementing a no-op std::ostream Is there any stream equivalent of NULL in c++? I want to write a function that takes in a stream if the user wants to have the internal ...
4
votes
6answers
89 views

what exactly is a token, in relation to parsing

I have to use a parser and writer in c++, i am trying to implement the functions, however i do not understand what a token is. one of my function/operations is to check to see if there are more ...
4
votes
3answers
451 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
3answers
152 views

Is there a null std::ostream implementation in C++ or libraries?

I'm looking for a std::ostream implementation that acts like /dev/null. It would just ignore anything that is streamed to it. Does such a thing exist in the standard libraries or Boost? Or do I ...
3
votes
2answers
132 views

ostream operator overloading for unsigned char in C++

Given: typedef struct { char val[SOME_FIXED_SIZE]; } AString; typedef struct { unsigned char val[SOME_FIXED_SIZE]; } BString; I want to add ostream operator << available for AString and ...
3
votes
2answers
112 views

Handle displaying uint8 as an int automatically to an ostream

I have a class with a member of type uint8 and when I try to output it to an ostream it displays as it's char representation. I would prefer it's int representation so I need to ...
3
votes
1answer
293 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
4answers
273 views

C++ ostream out manipulation

well basically it should list all the vector coords in this kind of format : (x, y, z) but at the moment it does like this (x, y, z, ) easiest way would be using if in the for cycle, but can i ...
3
votes
6answers
183 views

C++ overloading << error

I am hoping to get some help with an error I am getting - I have searched similar questions which havent really gave me what I'm after. A code snippet is listed below: class NewSelectionDlg : public ...
3
votes
1answer
167 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
201 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
1k 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 { ...
3
votes
7answers
2k views

Function that prints something to std::ostream and returns std::ostream?

I want to write a function that outputs something to a ostream that's passed in, and return the stream, like this: std::ostream& MyPrint(int val, std::ostream* out) { *out << val; ...
3
votes
3answers
2k views

Have a C++ Class act like a custom ostream, sstream

I have a C++ class MyObject and I want to be able to feed this data like I would to a osstream (but unlike a direct sstream, have the incoming data be formatted a special way). I can't seem to figure ...
3
votes
3answers
956 views

Compiler not creating templated ostream << operator

I have a class, defined in a head as: template <typename T> class MyClass { template <typename U> friend std::ostream& operator<<(std::ostream& output, const ...
3
votes
3answers
3k views

How do I create my own ostream/streambuf?

For educational purposes I want to create a ostream and stream buffer to do: fix endians when doing << myVar; store in a deque container instead of using std:cout or writing to a file log ...
2
votes
2answers
73 views

C++, ostream error when passing argument in CBuilder 2010

What is wrong in this source code? #include <iostream> #include <ostream> #include <fstream> void printTest ( std::ostream * o ) { *o << "test" << std::endl; } ...
2
votes
1answer
84 views

Namespace + overloaded std::ostream << operator

I'm trying to make a Vector3D class in my c++ application. For my entire program, I'm using a namespace. In this namespace I've declared my Vector3D class and an overloaded operator<< for it ...
2
votes
3answers
215 views

Operators in derived class redefining but still using parent class

Specifically, I would like to be able to use the ostream operator << in two derived classes from a base class. The program I am creating is supposed to print out product details for various ...
2
votes
4answers
187 views

C++ operator<< and >> methods in the header file, done very wrong

I have this code in my header file and Ive got loads of errors on the ostream and istream lines. One error is "missing ";" before "&"" and im confuzzled, im new to this sorry #pragma once class ...
2
votes
5answers
589 views

overloading friend operator<< for template class

I have read couple of the question regarding my problem on stackoverflow now, and none of it seems to solve my problem. Or I maybe have done it wrong... The overloaded << if I make it into an ...
2
votes
4answers
245 views

operator<< overloading ostream

In order to use cout as such : std::cout << myObject, why do I have to pass an ostream object? I thought that was an implicit parameter. ostream &operator<<(ostream &out, const ...
2
votes
3answers
472 views

Simple wostream logging class (with custom stream manipulators)

I've been reading tons of questions, articles, and documentation, but I've not found a solution to my problem. I'd like to create a simple class for use in debugging. The end result of which would ...
2
votes
4answers
458 views

Check if ostream object is cout or ofstream, c++

Is there a way in C++ to check if an ostream object is cout or a ofstream object? Something like: ostream& output(ostream& out) { if (out == cout) return out; else { ...
2
votes
4answers
659 views

Deriving streambuf or basic_ostringstream?

I want to derive a stringstream so that I can use the operator<< to construct a message which will then be thrown. The API would look like: error("some text") << " more text " << 42 ...
2
votes
3answers
713 views

Overloading << operator and recursion

I tried the following code: #include <iostream> using std::cout; using std::ostream; class X { public: friend ostream& operator<<(ostream &os, const X& obj) { ...
1
vote
1answer
93 views

Syntax errors when trying to overload “<<”: too many parameters

I've been searching for a while and the closest thing to an answer was over there toString override in C++ However I was not able to make it work in my class. I have a Table2D.h which contains ...
1
vote
5answers
131 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
4answers
116 views

ostream<<Iterator, C++

I'm trying to build an operator which prints list, Why won't ostream<<*it compile? void operator<<(ostream& os, list<class T> &lst) { list<T>::iterator it; ...
1
vote
2answers
188 views

Problem with ostream/ofstream inheritance

I'm writing a C++ program and I need some help understanding an error. By default, my program prints to the terminal (STDOUT). However, if the user provides a filename, the program will print to that ...
1
vote
5answers
359 views

Inheriting and overriding ostream operator in C++

I've been trying to find an answer to this, but no one seems to have exactly the same problem as I do. I am working with several derived classes. The ostream operator << for each of these ...
1
vote
1answer
298 views

C++ toString member-function and ostream operator << integration via templates

I'm a beginner C++ developer and I have a question about toString and ostream operator integration via templates. I have such code: struct MethodCheckerTypes{ typedef unsigned char ...
1
vote
1answer
579 views

C++ Passing ostream as parameter

I'm working on a homework project for a virtual rolodex that has called for a main class, a rolodex class, and a card class. To output the contents of all of the "cards" to the console, the assignment ...
1
vote
2answers
710 views

Typedef and ostream operator for a std::vector

I created a class Chromosome that ended up simply being a wrapper for vector with an ostream operator, so I've decided to typedef vector instead. However, I'm having trouble with the templated ostream ...
1
vote
2answers
141 views

Base-from-Member Idiom in C++

The following code is from here: #include <streambuf> // for std::streambuf #include <ostream> // for std::ostream class fdoutbuf : public std::streambuf { public: explicit ...
1
vote
2answers
403 views

inherit std::ostream

I want to define MyOStream which inherits publicly from std::ostream. Let's say I want to implement my own ofstream. How can this be done? I'll be glad for any help, coded example or any relevant ...

1 2