是否以 String.format 格式重用参数?
2022-08-31 06:54:39
String hello = "Hello";
String.format("%s %s %s %s %s %s", hello, hello, hello, hello, hello, hello);
hello hello hello hello hello hello
在调用 format 方法时,变量是否需要重复多次,或者是否有速记版本允许您指定一次要应用于所有标记的参数?hello
%s