what is difference between void bark() and public static void main( string...args) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

what is difference between void bark() and public static void main( string...args)

brief description needed

2nd Aug 2016, 9:08 AM
Kalyan Surapaneni
Kalyan Surapaneni - avatar
5 Answers
+ 5
public static void main(String args []) is the main method .. ur program starts from here .. and void bark() is jst a method that u can use it in ur program if u want . it will only work if u envoke it .. public = accesible to all static = no need to create object .. main method is always static void = returns nothing String args= is main methods arguments
11th Sep 2016, 8:26 PM
Bhushan Gaikwad
Bhushan Gaikwad - avatar
+ 1
Kalyan the public static void main (string...args) is the main method of your class. It covers everything. void bark is specific to the class so is probably private. It is just a part of the class.
2nd Aug 2016, 9:47 PM
‎‏‎‏‎Joe
‎‏‎‏‎Joe - avatar
0
Thanks Bhushan, the void concept should be hard to understand at start. Still not so clear for me when can use the strings args but I have faith . Some day I can domain this.
30th Nov 2016, 12:01 PM
Eduardo Cupertino
Eduardo Cupertino - avatar
- 2
public static void main is your main program which doesnt return any value only void () is a class which doesnt return any value
10th Aug 2016, 11:02 AM
yugant ambetkar
yugant ambetkar - avatar
- 3
there is main class and other classes. the main class covers all classes .
10th Aug 2016, 7:25 PM
Qays Gegz
Qays Gegz - avatar