public class ToStringUeberschreiben { private String s = "Hallo Welt!"; private int i = 10; public static final double pi = 3.14; public static void main(String[] args) { System.out.println(new ToStringUeberschreiben()); } public String toString(){ return this.s + " | " + this.i + " | " + pi; } }