gpt4 book ai didi

java - 在 String.format() 中组合使用 String 和 Varargs

转载 作者:搜寻专家 更新时间:2023-10-31 20:03:25 24 4
gpt4 key购买 nike

想知道是否可以在 String.format() 中组合单个字符串和可变参数字符串,如下所示:

String strFormat(String template, String str, String... moreStrs) {    
return String.format(template, str, moreStrs);
}

如果我这样调用上面的代码:

strFormat("%s/%s/%s", "hello", "world", "goodbye");

我得到 java.util.MissingFormatArgumentException:格式说明符 's'

这个有效:

String strFormat(String template, String... moreStrs) {    
return String.format(template, moreStrs);
}

以及这个作品:

String strFormat(String template, String str1, String str2) {    
return String.format(template, str1, str2);
}

是否有可能让它发挥作用?

String strFormat(String template, String str, String... moreStrs) {    
return String.format(template, str, moreStrs);
}

谢谢!

最佳答案

你可以这样做:

String strFormat(String template, String str, String... moreStrs)
{
String[] args = new String[moreStrs.length + 1];

// fill the array 'args'
System.arraycopy(moreStrs, 0, args, 0, moreStrs.length);
args[moreStrs.length] = str;

return String.format(template, args);
}

关于java - 在 String.format() 中组合使用 String 和 Varargs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17935596/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com