2.3. Calling Methods Without Parameters¶
Methods are a set of instructions that define behaviors for all objects of a class. For example, in the Turtle
class, methods like forward()
and turnRight()
give Turtle
objects the ability to move forward and turn 90 degrees right.
To use an object’s method, you must use the object name and the dot (.) operator followed by the method name, for example, yertle.forward();
calls yertle
’s forward
method to move a turtle object forward 100 pixels. These are called object methods or non-static methods. An object method must be called on an object of the class that the method is defined in. Object methods work with the attributes of the object, such as the direction the turtle is heading or its position.
Every method call is followed by parentheses. The parentheses ()
after method names are there in case you need to give the method parameters (data) to do its job, which we will see in the next lesson. You must always include the parentheses after the method name.
Note
object.method(); is used to call an object’s method.
Check Your Understanding: Mixed-up Code
The following code uses a turtle to draw the digital number 7, but the lines are mixed up. Drag the code blocks to the right and put them in the correct order to first draw the line going up (towards the top of the page) and then turn and draw a line to the left to make a 7. Remember that the turtle is facing the top of the page when it is first created. Click on the “Check Me” button to check your solution.
After you put the mixed up code in order above, type in the same code below to make the turtle draw a 7.
Can you make yertle draw the digital number 8, as 2 squares on top of each other?
2.3.1. Procedural Abstraction¶
Procedural abstraction allows a programmer to use a method and not worry about the details of how it exactly works. For example, we know that if we hit the brakes, the car will stop, and we can still use the brakes even if we don’t really know how they work.
You will learn to write your own methods in Unit 5. In this unit, you should be able to use methods already written for you and figure out what they do. When we use methods for a class in a library, we can look up the method signature (or method header), which is the method name followed by a parameter list, in its documentation. For example, here is a Student
class with a method signature public void print()
which has an empty parameter list with no parameters. Methods are defined after the instance variables (attributes) and constructors in a class.
public class Student { private String name; private String email; public Student(String initName, String intEmail) { name = initName; email = initEmail; } public String getName() { return name; } public void print() { System.out.println(name + ":" + email); } }
The Java visualization below shows how a song can be divided up into methods. Click on the next button below the code to step through the code. Execution in Java always begins in the main
method in the current class. Then, the flow of control skips from method to method as they are called. The Song’s print method calls the chorus() and animal() methods to help it print out the whole song.
When you call the chorus() method, it skips to the chorus code, executes and prints out the chorus, and then returns back to the method that called it.
Methods inside the same class can call each other using just methodName()
, but to call non-static methods in another class or from a main method, you must first create an object of that class and then call its methods using object.methodName()
.
- I like to eat eat eat.
- Try tracing through the print method and see what happens when it calls the other methods.
- I like to eat eat eat fruit.
- There is a fruit() method but it does not print out the word fruit.
- I like to apples and bananas eat.
- The order things are printed out depends on the order in which they are called from the print method.
- I like to eat eat eat apples and bananas!
- Yes, the print method calls the eat method 3 times and then the fruit method to print this.
- Nothing, it does not compile.
- Try the code in an active code window to see that it does work.
2-3-6: What does the following code print out?
public class Song
{
public void print()
{
System.out.print("I like to ");
eat();
eat();
eat();
fruit();
}
public void fruit()
{
System.out.println("apples and bananas!");
}
public void eat()
{
System.out.print("eat ");
}
public static void main(String[] args)
{
Song s = new Song();
s.print();
}
}
Try this visualization to see this code in action.
Note
method(); is used to call a method within the same class, but object.method(); is necessary if you are calling the method from the main method or from a different class.
Before you call a method from main
or from outside of the current class, you must make sure that you have created and initialized an object. Remember that if you just declare an object reference without setting it to refer to a new object the value will be null
meaning that it doesn’t reference an object. If you call a method on a variable whose value is null
, you will get a NullPointerException error, where a pointer is another name for a reference.
2.3.2. Programming Challenge : Draw a Letter¶
Working in pairs, use the area below (or on JuiceMind or replit) to use a turtle to draw a simple block-style letter or number that uses just straight lines (no curves or diagonals). It could be one of your initials or a number from today’s date.
It may help to act out the code pretending you are the turtle. Remember that which way you turn depends on which direction you are facing, and the turtle begins facing north (towards the top of the page).
Here are some simple turtle methods that you can use:
forward()
turnLeft()
turnRight()
backward()
penUp()
penDown()
You may notice that it is challenging to have your turtle draw with these simple methods. In the next lesson, we will use more complex Turtle
methods where you can indicate how many steps to take or what angle to turn that will make drawing a lot easier!
Create a drawing of a simple letter or number that uses just straight lines (no curves or diagonals). It could be an initial in your name or a number from today’s date.
2.3.3. Summary¶
Methods are a set of instructions that define the behaviors for all objects of the class.
Use dot notation to execute an object’s method. This is the object’s name followed by the dot (.) operator followed by the method name and parentheses: object.method();
A method signature is the method name followed by the parameter list which gives the type and name for each parameter. Note that methods do not have to take any parameters, but you still need the parentheses after the method name.
Procedural abstraction allows a programmer to use a method by knowing in general what it does without knowing what lines of code execute. This is how we can drive a car without knowing how the brakes work.
A method or constructor call interrupts the sequential execution of statements, causing the program to first execute the statements in the method or constructor before continuing. Once the last statement in the method or constructor has executed or a
return
statement is executed, the flow of control is returned to the point immediately following the method or constructor call.A NullPointerException will happen if you try to call an object method on an object variable whose value is
null
. This usually means that you forgot to create the object using thenew
operator followed by the class name and parentheses.An object method or non-static method is one that must be called on an object of a class. It usually works with the object’s attributes.
A static method or class method method is one that doesn’t need to be called on an object of a class.
2.3.4. AP Practice¶
myParty.cancelParty();
-
Correct!
myParty.inviteFriend(2);
-
The method inviteFriend() does not have any parameters.
myParty.endParty();
-
There is no endParty() method in the class Party.
myParty.numInvited();
-
There is no numInvited() method in the class Party. It is an instance variable.
System.out.println( myParty.cancelParty() );
-
This would cause an error because the void method cancelParty() does not return a String that could be printed.
2-3-8: Consider the following class definition.
public class Party
{
private int numInvited;
private boolean partyCancelled;
public Party()
{
numInvited = 1;
partyCancelled = false;
}
public void inviteFriend()
{
numInvited++;
}
public void cancelParty()
{
partyCancelled = true;
}
}
Assume that a Party object called myParty has been properly declared and initialized in a class other than Party. Which of the following statements are valid?
Cat a = new Cat(); Cat.meow(); Cat.purr();
-
You must use the object a, not the class name Cat, to call these methods.
Cat a = new Cat(); a.welcomeHome();
-
This would print “purrMeow “
Cat a = new Cat(); a.meow(); a.purr();
-
Correct!
Cat a = new Cat().welcomeHome();
-
This would cause a syntax error.
Cat a = new Cat(); a.meow();
-
This would just print “Meow “.
2-3-9: Consider the following class definition.
public class Cat
{
public void meow()
{
System.out.print("Meow ");
}
public void purr()
{
System.out.print("purr");
}
public void welcomeHome()
{
purr();
meow();
}
/* Constructors not shown */
}
Which of the following code segments, if located in a method in a class other than Cat, will cause the message “Meow purr” to be printed?