1.2. Why Programming? Why Java?

What do Android phones, Minecraft, and Netflix have in common? They’re all programmed in Java! Many of the apps you use in an Android phone or tablet are written in Java. Java is a programming language that is used worldwide to create software that we all use.

1.2.1. First Java Program

Every program in Java is written as a class. Java is an object-oriented language and we’ll learn more about classes and objects in Unit 2. Inside the class, there can be a main method that starts the program. When you ask the Java environment to run a class, it will always start execution in the main method. Here is the template for a simple Java program with a main method:

public class MyClass
{
   public static void main(String[] args)
   {
      // Put your code here!
   }
}

Note

In Java every open curly brace { must have a matched close curly brace }. These are used to start and end class definitions and method definitions.

The special characters // are used to mark the rest of the line as a comment. Comments can be helpful in describing what the code is doing.

coding exercise Coding Exercise:

Click on the Save & Run button below to have the computer execute the main method in the following class. System.out.println("Hi there!"); prints out the characters between the first " and the second " followed by a new line. The "Hi there!" is called a string literal, and it can have zero to many characters enclosed in starting and ending double quotes. Then, change the code to print your name. Be sure to keep the starting " and ending ". Run the modified code to test your changes. If you revisit this page later and login, click on Load History button and move the bar above it to see your previous code changes.

Run this code to see the output below it. Then change the code to print your name, for example “Hi Pat!”, and run again. If you mess up the code, hit the “Load History” button and use the slider to go back to a previous version.

You can copy the Java source code shown in this book into a file and save it if you want to run it in an integrated development environment (IDE) on your local computer (see section 1.7 for different IDEs). You must name the file the same name as the class name with “.java” as the extension. All code (programs) in Java must be defined inside a class in a source file, and the name of the class must match the file name.

Run this code to see the output below it. Then change the code to add two more lines to the poem: “Java is interesting,” followed by “And so are you!”.

Most command keywords in Java must be in lowercase, but class names such as System and String are capitalized. Commands in Java must end with a semicolon ;. Think of the semicolon ; in Java like a period in English. You use a semicolon ; to show the end of a Java statement, just the way you use a period to show the end of an English sentence. Your programs won’t run if you forget the semicolon at the end of each statement.

1.2.3. Syntax Errors

Computers don’t actually speak Java so we have to compile (translate) Java source files that we write into class files which is code that a computer can understand and run. In this e-book, the Java code is actually being sent to a Java server to compile and run, and the output is sent back to your browser to show on the same page.

Syntax errors are reported to you by the compiler if your Java code is not correctly written. Examples of syntax errors are a semicolon ; missing or if the code has a open curly brace { or open quote ", but no close curly brace } or close quote ". Informally, a syntax error is called a bug, and the process of removing errors is called debugging. An early computer science pioneer Grace Hopper documented a real bug, a moth that flew into a computer in 1947!

First Bug

Figure 1: Grace Hopper’s log showing a real bug, 1947.

The compiler tries to make sense of your code, but if your code has syntax errors, you will see error messages displayed below the code. Compiler error messages will tell the line number that the compiler found the error and the type of error. The error messages are not always easy to understand and sometimes the actual error is before the line that the compiler says is the problem. Debugging can be frustrating but you will get better at it with practice!

Let’s practice debugging some code!

exercise Check Your Understanding: Mixed up programs

The following has all the correct code to print out “Hi my friend!” when the code is run, but the code is mixed up. Drag the blocks from left to right and put them in the correct order. You can go back and look at the previous programs if you are having trouble understanding how to order the blocks.

Click on the “Check” button to check your solution. You will be told if any of the blocks are in the wrong order or if you need to remove one or more blocks.

After three incorrect attempts you will be able to use the “Help me” button to make the problem easier.

The following has all the correct code to print out “Hi there!” when the code is run, but the code is mixed up and contains some extra blocks with errors. Drag the needed blocks from left to right and put them in the correct order, then check your solution.

coding exercise Coding Exercise: Compile Time Error 1

Run the following code. Look for an error message after the code. This is called a compile time error because it is an error detected by the compiler.

What is wrong? Can you fix it? The error message will tell you the line number that it thinks is causing the error (Error1.java:5: error: unclosed string literal). Check line 5 to make sure that everything looks correct. One good thing to check is that all { have a matching } and all ( have a matching ) and all starting " have a ending " as well. Try putting in the missing symbol and run again. This is called debugging.

Fix the code below.

coding exercise Coding Exercise: Compile Time Error 2

Try and run the following code. Look for an error message after the code. What is wrong this time? Can you fix it? One good thing to check is that all { have a matching } and all ( have a matching ) and all starting " have a ending " as well.

Fix the code below.

coding exercise Coding Exercise: Compile Time Error 3

Try and run the following code. What is wrong this time? Can you fix it? After you fix the first error, you may encounter a 2nd error! Fix that one too!

Fix the code below.

Did you remember that System is capitalized in System.out.println? Did you find the missing semicolon?

1.2.4. groupwork Debugging Challenge

Debug the following code. Can you find all the bugs and get the code to run?

1.2.5. Comments

Adding comments to your code helps to make it more readable and maintainable. In the commercial world, software development is usually a team effort where many programmers will use your code and maintain it for years. Commenting is essential in this kind of environment and a good habit to develop. Comments will also help you to remember what you were doing when you look back to your code a month or a year from now.

There are 3 types of comments in Java:

  1. // Single line comment

  2. /* Multiline comment */

  3. /** Documentation comment */

In Java and many text-based coding languages, // is used to mark the beginning of a comment. Everything on the line that follows the // is ignored by the compiler. For multi-line comments, use /* to start the comment and */ to end the comment. There is also a special version of the multi-line comment, /** */, called the documentation comment. Java has a cool tool called javadoc that will pull out all of these comments to make documentation of a class as a web page.

The compiler will skip over comments. However, it is a good idea to use comments to make notes to yourself and other programmers working with you. Here is an example of commenting:

/* MyClass.java
   Programmer: My Name
   Date:
*/

int max = 10; // this keeps track of the max score

exercise Check your understanding

The compiler will skip over comments, and they don’t affect how your program runs. They are for you and other programmers working with you.

1.2.6. Summary

  • A basic Java program looks like the following:

public class MyClass
{
   public static void main(String[] args)
   {
      System.out.println("Hi there!");
   }
}
  • A Java program starts with public class NameOfClass { }. If you are using your own files for your code, each class should be in a separate file that matches the class name inside it, for example NameOfClass.java.

  • Most Java classes have a main method that will be run automatically. It looks like this: public static void main(String[] args) { }.

  • The System.out.print() and System.out.println() methods display information given inside the parentheses on the computer monitor.

  • System.out.println moves the cursor to a new line after the information has been displayed, while System.out.print does not.

  • A string literal is enclosed in double quotes (’’ ‘’).

  • Java command lines end in ; (semicolon). { } are used to enclose blocks of code. // and /* */ are used for comments.

  • A compiler translates Java code into a class file that can be run on your computer. Compiler or syntax errors are reported to you by the compiler if the Java code is not correctly written. Some things to check for are ; at end of command lines, matching { }, (), and “”.

You have attempted of activities on this page