Logo

Programming-Idioms

  • Python
  • Java

Idiom #245 Print value of custom type

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

import static java.lang.System.identityHashCode;
import static java.lang.System.out;
record X<T>(T t) {
    @Override
    public String toString() {
        String s = t.getClass().getName();
        s = "%s<%s>".formatted(getClass().getName(), s);
        return "%s@%x".formatted(s, identityHashCode(this));
    }
}
X<?> x = new X<>(123);
out.print(x);
import static java.lang.System.out;
out.print(x);

"... This method calls at first String.valueOf(x) to get the printed object's string value ..."
print(x)
#include <iostream>
std::cout << x;

New implementation...
< >
花大喵