我在谷歌上找不到。
在 Java 中是否可以像在 C# 中一样使用“{}”进行打印?
C#:
namespace Start
{
public class Program
{
public static void Main(string[] args)
{
string a = "Hi";
Console.WriteLine("{0}", a);
}
}
}
爪哇:???