Why does Java main() method accept an array of String args?

前端 未结 8 1350
情深已故
情深已故 2021-01-14 06:20

Since its possibly one of the most widely used methods of the Java language, why does it have to accept an array of Strings and doesn\'t work without it? For example, I coul

8条回答
  •  旧巷少年郎
    2021-01-14 07:08

    there are also many java programs that receive args through command line. Think of javac, ant, maven, etc

提交回复
热议问题