What is public static viod main? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is public static viod main?

Let me know clearly about main method and system.out.println statement. why should we write in that manner only

6th Jul 2018, 3:25 PM
Bhargav
2 Answers
+ 3
public=public keyword is used for control the access of various class member.if it is public then every variable or other class can use it. static=Method to be executed without an object of the class. void=means method does not return any value. main=it's main method it's just name. String=predefined class. args[]=it's variable of String class. System=it's predefined class in java package. out=it is object of print stream class. println=it's method which is defined in print stream.or we can say it predefined function.
6th Jul 2018, 4:51 PM
Maninder $ingh
Maninder $ingh - avatar
+ 2
The main loop/method/function is the entry point to your program and is what maintains it until you close the program. Without it, your program wouldn't be able to start because there would be no starting point.
6th Jul 2018, 3:30 PM
Fata1 Err0r
Fata1 Err0r - avatar