Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Dart

Idiom #245 Print value of custom type

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

print(x);

you need to override the toString method of x to get any meaningful result. Otherwise it will just print "Instance of 'T'".
#include <iostream>
std::cout << x;

New implementation...
< >
花大喵