printf() メソッドを使用すると、出力を java.io.PrintStream または java.io.PrintWriter# にフォーマットできます。 ##。これらのクラスには、同じ結果を生成する format() というメソッドも含まれているため、printf() メソッドについてここで読んだ内容はすべて機能します。 format( )### 方法。 #構文
System.out.printf(“format-string” [, arg1, arg2, … ]);例 1
import java.io.PrintStream; public class PrintfTest1 { public static void main(String[] args) { int i = 1234; System.out.printf("Decimal: %1$,d Octal: %1$o Hex: %1$x"\n, i); String str = "Tutorials Point"; System.out.printf("%15s", str); } }
Decimal: 1,234 Octal: 2322 Hex: 4d2 Tutorials Point
public class PrintfTest2 { public static void main(String[] args) { String name = "Adithya"; int age= 30; System.out.format("%-10s - %4d\n", name, age); } }
出力
Adithya - 30
以上がJavaでprintf()メソッドを使用してフォーマットされたテキストを印刷するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。