Tagged Questions

22
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 ...
3
votes
2answers
131 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
6answers
182 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
3answers
1k 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
953 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 ...
2
votes
1answer
81 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
5answers
579 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
1answer
78 views

How can I compare two ostream objects in C++ for equality?

I overloaded the left shift operator in my class and the output works fine, so for example when I have a line which says cout << obj; I will output the fields seperated by a comma. ...
2
votes
3answers
710 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
5answers
356 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 ...
0
votes
1answer
81 views

ostream operator overloading - inheritance

I have a base class called Item: #ifndef ITEM_H #define ITEM_H #include <ostream> class Item { public: virtual ~Item() {} virtual void print(std::ostream& out) const {} friend ...
0
votes
2answers
177 views

Create a print function that takes an ostream as an argument and writes to that stream

Im currently anwsering exercise questions concerning operator overloading in C++. I have a question: Create a simple class containing an int and overload the operator+ as a member function. Also ...
0
votes
2answers
140 views

Why can't I overload ostream's << operator?

EDIT: Passed Expression exp and string expression by const reference I'm trying to allow a class to be display via cout in the following manner: #include <iostream> class Expression { ...
0
votes
1answer
333 views

istream >> ostream << Operator Overloading with * Pointer

How would I overload the >> and << operators if they are dealing with pointers? in header: friend std::istream& operator >>( std::istream& ins, Classname* & e); friend ...
0
votes
1answer
75 views

Weird characters appear in ostream in C++

I have a program that should emulate a simple filesystem, I want to print the structure of directories, so I have overloaded the << operator, and called another function that goes through my ...
0
votes
1answer
123 views

Overloading ostream

I have my class for example TEST in TEST.h I have friend ostream& operator<< (ostream& out, const test& outstr); in TEST.cc ostream& operator <<(ostream& out, ...
0
votes
3answers
867 views

C++ Overloading << operator in Matrix class

I am trying to overload the ostream << operator in my Matrix class, but I keep getting the following error: Expected constructor, destructor, or type conversion before token & ...
0
votes
2answers
774 views

Is this the correct way to overload the left-stream operator? (C++)

This function declaration gives me errors: ostream& operator<<(ostream& os, hand& obj); The errors are: error C2143: syntax error : missing ';' before '&' error C4430: ...
-1
votes
2answers
224 views

Overload <<, returning ostream gives error. C++

I'm having an issue with overloading the << operator. Everything prints and enters fine, but when I try and return the ostream, I get this error: Expression: ...
-2
votes
2answers
99 views

Overloading ostream operator [closed]

I have an issue with writing an ostream operator. For my project, the output from the ostream has to be multiple lines and each line of output is from a different object. I know that I can use "\n" to ...