Does it matter if I write: private static void... OR public static void...? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Does it matter if I write: private static void... OR public static void...?

Look at title ^

10th Apr 2020, 11:56 AM
Yahel
Yahel - avatar
15 Answers
+ 1
yahel I'm just talking about the main method which has to be 'public static void'. You can have other methods in the class with different method signature similar to what you have mentioned. They are not much useful since private cannot be inherited and static methods are hidden in the extended classes.
10th Apr 2020, 12:38 PM
Avinesh
Avinesh - avatar
+ 7
yahel I imagine private static methods could be a shared method designed to maintain state or coordinate some action across all instances of a class. Making it private will narrow its scope and usage to the specific class for which the method exists. For this reason, such usage would be at risk of possibly following any number of anti-patterns that should be reviewed and avoided. Still yet, I'm sure there are also valid usage scenarios as well. It's really something that would be assessed on a case by case basis.
10th Apr 2020, 12:54 PM
David Carroll
David Carroll - avatar
+ 5
yahel Here is a silly / simple example of a scenario using the private static members. https://code.sololearn.com/cEDO76cAZJ9F/
11th Apr 2020, 5:29 AM
David Carroll
David Carroll - avatar
+ 3
Yes it is possible. Here is a small example for you to understand it better. https://code.sololearn.com/c1iWfL13Gtf6/?ref=app
10th Apr 2020, 12:51 PM
Avinesh
Avinesh - avatar
+ 2
'private static void' will not work because it limits the visibility of the method and the JVM will not be able to locate it. The JVM makes a call to the main method from outside the class or package or the project so the method has to be strictly 'public'.
10th Apr 2020, 12:29 PM
Avinesh
Avinesh - avatar
0
Avinesh so I don't need to use it anywhere right? Because I saw some codes that used "private"... why do they need to use it? They can just use "public" right?
10th Apr 2020, 12:33 PM
Yahel
Yahel - avatar
0
Avinesh and I have another question. When I write a method, can I just write: "static void hello(){}" OR just write "void hello(){}" ?
10th Apr 2020, 12:37 PM
Yahel
Yahel - avatar
0
Avinesh ok thanks. And can you answer the other thing that I asked please? : and I have another question. When I write a method, can I just write: "static void hello(){}" OR just write "void hello(){}" ?
10th Apr 2020, 12:40 PM
Yahel
Yahel - avatar
0
yahel I would recommend you to read about the static keyword. Static methods can be invoked without creating an instance of the class it is declared in. So it's completely upto you to decide.
10th Apr 2020, 12:41 PM
Avinesh
Avinesh - avatar
0
Avinesh Ok. But is it possible to make a method that is built just from a void? Like this: void hello(){ }
10th Apr 2020, 12:44 PM
Yahel
Yahel - avatar
0
Avinesh THANK YOU VERY MUCH! FINALLY I UNDERSTAND THIS THING
10th Apr 2020, 12:53 PM
Yahel
Yahel - avatar
0
David Carroll thanks for the information!
10th Apr 2020, 12:56 PM
Yahel
Yahel - avatar
0
David Carroll do you have an example with the private statement?
10th Apr 2020, 12:57 PM
Yahel
Yahel - avatar
0
Public keyword means that any function can access that method. Private means that everything in the same class can access it, but other classes can’t access it.
11th Apr 2020, 10:43 AM
tobbdev
tobbdev - avatar
0
No english
11th Apr 2020, 5:42 PM
Amirabbas