Java中,有多種方式可以輸出內(nèi)容,常見的有以下幾種:
// 使用System.out.println()方法輸出
System.out.println("Hello World!");
// 使用System.out.print()方法輸出
System.out.print("Hello ");
System.out.print("World!");
// 使用System.out.printf()方法輸出
double pi = 3.1415926;
System.out.printf("pi的值是:%.2f", pi);
在上面的代碼中,System.out.println()
方法會在輸出內(nèi)容的末尾自動添加一個換行符,而System.out.print()
方法則不會添加換行符,會將輸出內(nèi)容連續(xù)輸出在一行上。
而System.out.printf()
方法則可以根據(jù)指定的格式輸出內(nèi)容,其中格式化字符串中可以包含“占位符”,例如上面的代碼中使用了“%.2f”來表示一個保留兩位小數(shù)的浮點數(shù)。除了%f以外,還有很多其他的占位符,例如%d代表整數(shù),%s代表字符串等等。