format()
printf()
例:
System.out.println(String.format("Total count: %d", 42));
クイックフィックス適用後:
System.out.printf("Total count: %d%n", 42);