0
[DUPLICATE] What does "(String[] args)" in main method means??
7 Answers
+ 17
"args" is just the method parameter name. You can give it a different name, just like how you name your variables.
+ 16
Array of strings as main method parameter, to receive command line arguments if any is provided during program execution.
https://stackoverflow.com/questions/890966/what-is-string-args-parameter-in-main-method-java
+ 1
what is args
+ 1
ok thanks !