What are meaning of system, out ,prinln in the statement System.out .println?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What are meaning of system, out ,prinln in the statement System.out .println??

If possible differences

11th Sep 2019, 2:31 AM
Kande Likhitha
Kande Likhitha - avatar
3 Answers
+ 3
It's a declaration I think someone that codes with Java can explain this Better
11th Sep 2019, 2:39 AM
Qudusayo
Qudusayo - avatar
+ 2
Hello: As you know, everything in java works with classes and objects, among them the language itself provides a series of packages and pre-designed classes, some that must be imported and others that do not require it because they are implicitly imported, those that are "implicitly imported" are mostly java.lang package among those is the java.lang.System class that provides access to system resources (such as clock and standard input / output), so we have to System: class provided by the java.lang package out: it is a static property of the System class, said property is an object of the PrintStream class. println: It is a method of the PrintStream class
11th Sep 2019, 2:59 AM
Giovanny Avila
Giovanny Avila - avatar
+ 1
System is a class -out is variable -println method
11th Sep 2019, 4:05 AM
Prince Bal
Prince Bal - avatar