Logo

Programming-Idioms

  • Python
  • C++

Idiom #245 Print value of custom type

Print the value of object x having custom type T, for log or debug.

#include <iostream>
std::cout << x;
print(x)
print(x);

you need to override the toString method of x to get any meaningful result. Otherwise it will just print "Instance of 'T'".

New implementation...
< >
花大喵