Writes formatted text to the print stream, using the default locale. @param __fmt The format specifiers. @param __args The arguments. @return this. @throws IllegalArgumentException If the string contains illegal format specifiers. @throws NullPointerException If no format was specified. @si
(String __fmt, Object... __args)
| 306 | * @since 2018/09/23 |
| 307 | */ |
| 308 | public PrintStream printf(String __fmt, Object... __args) |
| 309 | { |
| 310 | return this.__printf(__fmt, __args); |
| 311 | } |
| 312 | |
| 313 | /** |
| 314 | * Prints the end of line sequence that is used for the current platform. |