Didn't understand system.print.out???? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Didn't understand system.print.out????

Help plzzz

23rd Nov 2018, 10:31 AM
$YeD $aMeE₹
$YeD $aMeE₹ - avatar
4 Answers
+ 6
$YeD $aMeE₹ System.out.println( "Welcome to SoloLearn!"); System.out.println is a Java statement that prints the argument passed, into the System.out which is generally stdout. System - is a final class in java.lang package. out - is a static member field of System class and is of type PrintStream. println - is a method of PrintStream class. 'println' prints the argument passed to the standard console and a newline. There are multiple 'println' methods with different arguments (overloading). Every 'println' makes a call to 'print' method and adds a newline. 'print' calls write() and the story goes on like that.
23rd Nov 2018, 12:42 PM
Danijel Ivanović
Danijel Ivanović - avatar
23rd Nov 2018, 1:08 PM
Danijel Ivanović
Danijel Ivanović - avatar
+ 9
Hello, 😊 Can you specifying your question correctly! Use the search bar! https://www.sololearn.com/post/10362/?ref=app Please, read our guidelines: https://www.sololearn.com/discuss/1316935/?ref=app An useful code for any new user here!;) https://code.sololearn.com/WvG0MJq2dQ6y/
23rd Nov 2018, 10:39 AM
Danijel Ivanović
Danijel Ivanović - avatar
+ 1
Yaa sure
23rd Nov 2018, 10:40 AM
$YeD $aMeE₹
$YeD $aMeE₹ - avatar