Every line of code that runs in Java must be inside a class
. In our example, we named the class MyClass. A class should always start with an uppercase first letter.
Note: Java is case-sensitive: “MyClass” and “myclass” has different meaning.
The main Method
The main()
method is required and you will see it in every Java program:
public static void main(String[] args)
Any code inside the main()
method will be executed. You don’t have to understand the keywords before and after main. You will get to know them bit by bit while reading this tutorial.
For now, just remember that every Java program has a class
name which must match the filename, and that every program must contain the main()
method.
System.out.println()
Inside the main()
method, we can use the println()
method to print a line of text to the screen:
public class MyClass
{
public static void main(String[] args)
{
System.out.println(“Hello World”);
}
}
No comments:
Post a Comment