What does ‘public static void’ mean in Java?
It’s three completely different things: public means that the method is visible and can be called from other objects of other types. Other alternatives are private, protected, package and package-private. See here for more details. static means that the method is associated with the class, not a specific instance (object) of that class. This means that you can call a static method without creating … Read more