OOPS in JAVA 22
Java Command Line Arguments
The 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.
Example:
class cmd
{
public static void main(String[] args)
{
for(int i=0;i< args.length;i++)
{
System.out.println(args[i]);
}
}
}
Compile by > javac cmd.java
Execute by > java cmd 10 20 30
Output :
10
20
30
No comments:
Post a Comment
Hai , Post your comment . (required, Bugs, Errors )