当前位置: 首页 > 面试题库 >

在不连接的情况下将Java字符串插入另一个字符串?

公良鸿风
2023-03-14
问题内容

用Java有没有更优雅的方法

String value1 = "Testing";  
String test = "text goes here " + value1 + " more text";

是否可以将变量直接放在字符串中并对其值求值?


问题答案:

String test = String.format(“test goes here %s more text”, “Testing”);

是您可以用Java写的最接近的东西



 类似资料: