登录
注册
写文章
发现
工具
java占位符%s
_3t3lfz KEKfID
编辑文章
java占位符%s
asfx站长
2020.10.29 12:00:43
阅读
796
java中的%s占位符使用: 使用%s占位,使用String.format转换 ``` public class Test { public static void main(String[] args) { String str = "我叫%s,今年%s岁。"; String name = "张三"; String age = "28"; str = String.format(str,name,age); System.out.println(str); } } ``` 控制台输出: 我叫张三,今年28岁。
我的主页
退出