public class StdOut
extends java.lang.Object
| Constructor and Description |
|---|
StdOut() |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
printf(java.lang.String fmt,
java.lang.Object... args)
Writes to standard output.
|
static boolean |
println(java.lang.Object obj)
Writes to standard output.
|
static boolean |
puts(java.lang.Object obj)
Writes to standard output.
|
public static boolean puts(java.lang.Object obj)
obj - the object to writepublic static boolean printf(java.lang.String fmt,
java.lang.Object... args)
fmt - the format of the stringargs - arguments to the formatString.format(java.lang.String, java.lang.Object...)public static boolean println(java.lang.Object obj)
obj - the object to write