如何在文本中打印变量值

时间:2019-08-02 19:03:02

标签: java eclipse netbeans

我希望程序打印C#

我尝试使用System.out.println("A car with {0} wheels created", wheels); {0}或{1}中的占位符:virtual

1 个答案:

答案 0 :(得分:1)

使用+作为连接字符串的方法,如下所示:

System.out.println("A car with " + wheels + " wheels has been created.")车轮是您的变量