英文:
How use this c sharp syntax example in java?
问题
如何在Java字符串中插入(a)和(b)?
String a = "David";
String b = "Mike";
System.out.println("这是 {0} 和 {1} 的测试", a, b);
英文:
How insert (a) and (b) in string line in java?
string a = "David";
string b= "Mike";
Console.WriteLine("This is test for {0} and {1}",a,b);
答案1
得分: 1
你正在寻找名为 "String Interpolation" 的东西。
自从 Java 5 开始,你可以使用以下方法:
String s = String.format("这是 %s 和 %s 的测试", a, b);
英文:
You are looking for something called "String Interpolation".
Since Java 5 you can use this:
String s = String.format("This is test for %s and %s", a, b);
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论