Why we should use string args[] in main method in java?

Why we should use string args[] in main method in java?

we use only string in the main method not any other one.. specify the reason... and tell me each and every meaning of public static void main(String args[])...

View Answers

September 8, 2012 at 6:06 PM

import javax.swing.JOptionPane;
public class a3c4e23
{
public static void main (String args[])
{
int counter = 0;
int number;
int largest = 0;
int second = 0;
while (counter<10)
{
counter++;
number = Integer.parseInt(JOptionPane.showInputDialog("Enter integer"));
if (number >= largest)
largest=number;
else if (number < largest && second >= number)
second=number;
else
largest = largest;
second = second;
}

System.out.println("Largest number input: " + largest);
System.out.println("Second largest input: " + second); }}

September 8, 2012 at 6:09 PM

By running a program at a command line we can pass some arguments to it. These arguments are called command line arguments. This array is used to hold the command line from the command prompt


September 10, 2012 at 12:50 PM

In the main method,the String array args refers to the arguments that the program may require before starting. In many cases you may want the program to take some values as input for processing. this string array is for that purpose. It is needed to configure the application to run a particular way or provide it with some piece of information it needs.









Related Tutorials/Questions & Answers:

Ads