我们如何为多参数构建字符串?

时间:2019-05-17 16:47:29

标签: java android

我想在这里实现一些代码。

String text = "world, java";
String.format("Hello %s cool %s", text);
//result: Hello world cool java

2 个答案:

答案 0 :(得分:1)

通过:

  • 首先将带有参数的一个字符串转换为字符串数组
  • 然后将该数组传递给格式调用

你知道,那个方法

public static String format(String format, Object... args) {  

一个参数需要零到多个参数!

换句话说:您可以使用split()将一个字符串分解为一个数组,然后将其传递。或者,您只需手动传递不同的参数:

String.format("Hello %s cool %s", parm1, parm2);

答案 1 :(得分:0)

String text = "world";
String otherText = "java";
String result = String.format("Hello %s cool %s", text, otherText);
//result: Hello world cool java