Java -Format verwenden mehrmals denselben Wert

String.format("%1$s %1$s %2$s %2$s", "hello", "world");
// hello hello world world
Cylon