Please enable JavaScript to use CodeHS

IB Computer Science Higher Level (Year One)

Lesson 1.3 Java Programs and the Run Method

Description

This lesson introduces the run method, which is the place where the program starts running. Students will also learn to write full java programs instead of just writing commands. In the the program below, SquareKarel is the name of the class. When we say extend Karel, it means this is a Karel program like the ones we have already written.

public class SquareKarel extends Karel 
{
    public void run()
    {
        putBall();
        move();
        turnLeft();
   } 

Objective

Students will be able to:

  • Explain the purpose of the Run Method
  • Explain the first thing that happens in your program when you click the Run button.
  • Write a fully-formed Java program by including a class and a run method.