我目前正在使用Python,我喜欢能够在不执行任何操作的情况下将变量插入字符串的方式
" + var +"或
" ",var," "
示例:"我们可以在{} pm出去,然后转到{}。" .format(5," Bob' s Burgers");
有没有办法用Java做到这一点?
答案 0 :(得分:1)
是。你可以做到
String s = String.format("We can just go out at %d pm and go to %s.", 5, "Bob's Burgers");
答案 1 :(得分:0)
使用“System.out.printf”和占位符,例如%d,%s
public class HelloWorld {
public static void main(String[] args) {
String a ="Hello";
String b = "World";
System.out.printf("%s %s",a,b);
}
}