vote up 3 vote down star

I'd like to control what is written to a stream, i.e. cout, for an object of a custom class. Is that possible in C++? In Java you could overwride the toString() method for similar purpose. Thanks

flag

4 Answers

vote up 14 vote down check

In C++ you can overload operator<< for ostream and your custom class:

class A {
public:
  int i;
};

std::ostream& operator<<(std::ostream &strm, const A &a) {
  return strm << "A(" << a.i << ")";
}

This way you can output instances of your class on streams:

A x = ...;
std::cout << x << std::endl;

In case your operator<< wants to print out internals of class A and really needs access to it's private and protected members you could also declare it as a friend function:

class A {
private:
  friend std::ostream &operator<<(std::ostream&, const A&);
  int j;
};

std::ostream& operator<<(std::ostream &strm, const A &a) {
  return strm << "A(" << a.j << ")";
}
link|flag
2  
It is better to declare the operator<< as friend function of the class as it might be required to access the private members of the class. – Naveen Oct 11 at 5:36
2  
Better yet declare it as friend, and also inside the body of the class - with that, you won't have to do using namespace for the namespace containing the operator (and the class), but ADL will find it so long as object of that class is one of operands. – Pavel Minaev Oct 11 at 5:45
... the above was meant to say "_define_ it as friend inside the body of the class" - as in, an inline member definition. – Pavel Minaev Oct 11 at 5:48
@Naveen, that friend is dirty and unnecessary. Write a dump public method, and call it from a free operator<< function. – fnieto Oct 11 at 8:46
1  
@fnieto: that dump public method is dirty and unnecessary. Using friend here is perfectly fine. Whether you prefer a redundant method or an intrusive friend is entirely a matter of taste, although friend has arguably been introduced for this exact purpose. – Konrad Rudolph Oct 11 at 13:32
show 2 more comments
vote up 2 vote down

You can do it without unnecessary friends and allowing polymorphism, this way:

class Base {
public:
   virtual std::ostream& dump(std::ostream& o) {
      return o << "Base: " << b << "; ";
   }
private:
  int b;
};

class Derived : public Base {
public:
   virtual std::ostream& dump(std::ostream& o) {
      return o << "Derived: " << d << "; ";
   }
private:
   int d;
}

std::ostream& operator<<(std::ostream& o, const Base& b) { return b.dump(o); }
link|flag
+1 for virtual function, to copy Java's toString behaviour. – Konrad Rudolph Oct 11 at 13:33
vote up 2 vote down

As an extension to what John said, if you want to extract the string representation and store it in a std::string do this:

// Suppose a class A
A a;
std::stringstream sstream;
sstream << a;
std::string s = sstream.str(); // or you could use sstream >> s but that would skip out whitespace

std::stringstream is located in the <sstream> header.

link|flag
The header is <sstream> – Jonas Oct 11 at 9:33
Oops... dang. Sorry about that. – blwy10 Oct 11 at 10:17
vote up -4 vote down

sprintf

'nuf said

link|flag
then why go that far..use good old printf. – Naveen Oct 11 at 5:37
sprintf is a C not C++ construct, as such it does not have the notion of the representation of a custom class, plus it does not play nice with iostream. – Chen Levy Oct 11 at 5:39
1  
sprintf_nuf_said, given your user name I understand that you have a certain affinity for sprintf. I do think that its suitability in this particular case can be questioned, but I certainly expect many more sprintf-centered answers from you! How do you do this in SQL? sprintf! How do I do that in Java? sprintf! How does a hash table work? sprintf! What is important to think of when managing a large programming project? sprintf! – Thomas Padron-McCarthy Oct 11 at 8:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.