Java中类似于Python的"Got value: %s" % variable的等价写法是什么?

3

Java中相当于Python的"Got value: %s" % variable的语法是什么?

2个回答

6
String.format("Got value: %s", variable);

3
System.out.format("%s", aString)

请查看格式化及其各种不同的版本。


1
您的URL有误:http://file///opt/java/javase/jdk1.6/docs/api/java/text/Format.html - Viet

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接