format()
printf()
예:
System.out.println(String.format("Total count: %d", 42));
빠른 수정 적용 후:
System.out.printf("Total count: %d%n", 42);