Java statements
(Tap the post to see more)
Java Statements
Command-line Argument
- A command-line argument is nothing but the information that we pass after typing the name of the Java program during the program execution.
- The command requires no arguments.
- The code illustrates that args length gives us the number of command line arguments.
- If we neglected to check the args length, the command would crash if the user ran it with too few command-line arguments.
- A command-line argument is information that directly follows the program's name
- on the command line when it is executed.
- Accessing the command-line arguments inside a Java program is quite easy.
- They are stored as strings in the String array passed to main ( ).
First Java program:
Let's write our first Java program:
Program:
class command
{
public static void main(String args[])
{
System.out.println("Welcome to java programming");
}
}
Explanation:
First, we have created a class (as Java is a general purpose oops language) our program should be within a class and we have created a class named "command".
Next, is our public static void main(String args[]): the reason we are using this, is because our main() method is the execution point of our program.
The "System.out.println" is the standard output statement - that we can use to print our output.
Output:
Welcome to Java programming
Comments