What is the meaning of system. Out. Print in java?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is the meaning of system. Out. Print in java??

18th Jan 2017, 3:25 AM
zeeshan
4 Answers
+ 2
You can use it to print data types,It is a subclass of the io stream
18th Jan 2017, 5:24 AM
xuyexu
xuyexu - avatar
+ 2
(system.out) is a predefined object created to be used with methods such as (.println or .printf) to print out stuff such as ( variables or strings).
18th Jan 2017, 8:22 AM
LegendProgrammer
LegendProgrammer - avatar
+ 1
*System.out.print(); You can give it a String or any other value and it will print it to the console. You can add multiple things together with '+' like this: System.out.print("Value of x: " + x);
18th Jan 2017, 3:43 AM
Robobrine
Robobrine - avatar
0
There is also System.out.println(); which prints something in a new line.
18th Jan 2017, 7:30 AM
Jannick