0
Public, static and void
Depending on the program I want to run do I need to write "public" "static" or "void" as the main?
2 Réponses
+ 1
It's depends on program concept requirements..
Public is a keyword that is used as an access modifier for methods and variables. A variable (field) or a method declared as public is visible to and may be accessed by all classes defined in different packages.
In local variables, static is used to store the variable in the statically allocated memory instead of the automatically allocated memory.
In computer programming, when void is used as a function return type, it indicates that the function does not return a value. When void appears in a pointer declaration, it specifies that the pointer is universal. When used in a function's parameter list, void indicates that the function takes no parameters.
+ 1
Yes your main() should have all the 3.
'public' 'static' 'void'.