Java Command Line ArgumentsThe java command-line argument is an argument i.e. passed at the time of running the java program. The arguments passed from the console can be received in the java program and it can be used as an input. So, it provides a convenient way to check the behavior of the program for the different values. You can pass N (1,2,3 and so on) numbers of arguments from the command prompt. Simple example of command-line argument in java
Output: Your first argument is: sonoo Example of command-line argument that prints all the values
Output: sonoo jaiswal 1 3 abc |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263808.html