Java Reference
In-Depth Information
It has one parameter:
long
The print(float f) Method
public void print(float f) throws java.io.IOException
The print(float f) method prints a float. The string produced by String.valueOf(float)
is translated into bytes according to the platform's default character encoding.
It has one parameter:
float
The print(double d) Method
public void print(double d) throws java.io.IOException
The print(double d) method prints a double. The string produced by
String.valueOf(double) is translated into bytes according to the platform's default character
encoding.
D
It has one parameter:
double
The print(char[] s) Method
public void print(char[] s) throws java.io.IOException
The print(char[] s) method prints an array of characters. The characters are converted into
bytes according to the platform's default character encoding.
It has one parameter:
char[]
The print(java.lang.String s) Method
public void print(java.lang.String s) throws java.io.IOException
The print(java.lang.String s) method prints a string. If the argument is null then the
string “null” is printed. Otherwise, the string's characters are converted into bytes according to
the platform's default character encoding.
It has one parameter:
java.lang.String
The print(java.lang.Object obj) Method
public void print(java.lang.Object obj) throws java.io.IOException
 
Search WWH ::




Custom Search