Sunday 10 March 2013

println(int)


println(int)

Declaration:
public void println(int x)
Description:
Print an integer and then terminate the line. This method behaves as though it invokes print(int) and
then println().
Parameters:
x - The int to be printed.
println(long)
Declaration:
public void println(long x)
Description:
Print a long and then terminate the line. This method behaves as though it invokes print(long) and then
println().
Parameters:
x - The long to be printed.
println(float)
Declaration:
public void println(float x)
Description:
Print a float and then terminate the line. This method behaves as though it invokes print(float) and
then println().
Parameters:
x - The float to be printed.
Since: CLDC 1.1

println(double)
Declaration:
public void println(double x)
Description:
Print a double and then terminate the line. This method behaves as though it invokes print(double)
and then println().
Parameters:
x - The double to be printed.
Since: CLDC 1.1
println(char[])
Declaration:
public void println(char[] x)
Description:
Print an array of characters and then terminate the line. This method behaves as though it invokes
print(char[]) and then println().

println(String)
72
Parameters:
x - an array of chars to print.
println(String)
Declaration:
public void println(java.lang.String x)
Description:
Print a String and then terminate the line. This method behaves as though it invokes print(String) and
then println().
Parameters:
x - The String to be printed.
println(Object)
Declaration:
public void println(java.lang.Object x)
Description:
Print an Object and then terminate the line. This method behaves as though it invokes print(Object)
and then println().
Parameters:
x - The Object to be printed.


No comments:

Post a Comment