Java Syntax
Java Syntax
In the previous chapter, we created a Java file called Main.java, and we used the following code to print "Hello World" to the screen:
Main.java
public class Main {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
Try it Yourself »
Example explained
Every line of code that runs in Java must be inside a class. In our example, we named the class Main. A class should always start with an uppercase first letter.
Note: Java is case-sensitive: "MyClass" and "myclass" has different meaning.
The name of the java file must match the class name. When saving the file, save it using the class name and add ".java" to the end of the filename. To run the example above on your computer, make sure that Java is properly installed: Go to the Get Started Chapter for how to install Java. The output should be:
Hello World
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. Don't worry about 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 static void main(String[] args) {
System.out.println("Hello World");
}
Try it Yourself »
Note: The curly braces {} mark the beginning and the end of a block of code.
System.out.println() may look long, but you can think of it as a single command that means: "Send this text to the screen."
Here's what each part means (you will learn the details later):
Systemis a built-in Java class.outis a member ofSystem, short for "output".println()is a method, short for "print line".
Finally, remember that each Java statement must end with a semicolon (;).
Java Syntax. W3Schools Video Tutorial
This video is an introduction to Java Syntax.
Part of a series of video tutorials to learn Java for beginners!