문자열에서 동일한 각 인수에 대한 변수를 지정해야 합니까?포맷? String hello = "Hello"; String.format("%s %s %s %s %s %s", hello, hello, hello, hello, hello, hello); hello hello hello hello hello hello 하십니까?hello변수는 형식 메서드에 대한 호출에서 여러 번 반복되어야 하거나 모든 변수에 적용할 인수를 한 번 지정할 수 있는 간단한 버전이 있습니까?%s토큰?문서에서: 일반, 문자 및 숫자 형식의 형식 지정자 구문은 다음과 같습니다. %[argument_index$][flags][width][.precision]conversion 옵션인 argument_index는 인수 목록에서 인수의 위치를..