集册 Java实例教程 使用System.out.format()方法格式化字符串。

使用System.out.format()方法格式化字符串。

欢马劈雪     最近更新时间:2020-01-02 10:19:05

553
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
System.out.format()方法采用两个参数:输出格式模板和要显示的字符串。

public class Main {

  public static void main(String[] args) {/*时代Java公众号 - nowjava.com 提供*/

    int accountBalance = 1234;

    System.out.format("Balance: $%,d%n", accountBalance);

  }

}