Lesson 9: Printing Objects
45 minutes
Overview
How can I easily display information about an object?
Students have learned to obtain information about an object using its accessor methods. In this lesson, students discover the need for an easier way to get the state of an object. Students revisit the Object
class and learn how to override its toString()
method to display object information to the console. Students also learn to format output using escape sequences and concatenating instance variables and String
s.
Standards
MOD-2 - Programmers use code to represent a physical object or nonphysical concept, real or imagined, by defining a class based on the attirbutes and/or behaviors of the object or concept
MOD-2.D - Define behaviors of an object through non-void methods without prameters written in a class.
- MOD-2.D.6 - The toString method is an overridden method that is included in classes to provide a description of a specific object. It generally includes what values are stored in the instance data of the object.
- MOD-2.D.7 - If System.out.print or System.out. println is passed an object, that object’s toString method is called, and the returned string is printed.
MOD-3 - When mulitple classes contain common attributes and behaviors, programmers create a new class containing the shared attributes and behaviors forming a hierachy. Modifications made at the highest level of the hierarchy apply to the subclasses.
MOD-3.B - Create an inheritance relationship from a subclass to the superclass.
- MOD-3.B.10 - Method overriding occurs when a public method in a subclass has the same method signature as a public method in the superclass.
MOD-3.D - Call methods in an inheritance relationship.
- MOD-3.D.1 - Utilize the Object class through inheritance.
MOD-3.E - Call Object class methods through inheritance.
- MOD-3.E.3 - The following Object class methods and constructors—including what they do and when they are used—are part of the Java Quick Reference: • boolean equals(Object other) • String toString()
- MOD-3.E.4 - Subclasses of Object often override the equals and toString methods with class specific implementations.
VAR-1 - To find specific solutions to generalizable problems, programmers include variables in their code so that the same algorithm runs using different input values
VAR-1.E - For String class: a. Create String objects. b. Call String methods.
- VAR-1.E.11 - A String object can be concatenated with an object reference, which implicitly calls the referenced object’s toString method.
- VAR-1.E.5 - Escape sequences start with a \ and have a special meaning in Java. Escape sequences used in this course include \”, \\, and \n.
Agenda
Objectives
Students will be able to:
- Display information about the state of an object to the console
- Use escape sequences to format output
Preparation
- Print copies of the CS Bingo Cards (one card for each student)
- Print the CS Bingo Definitions resource and mix them up
- Check the Teacher's Lounge for verified teachers on the CSA Forum to find additional strategies or resources shared by fellow teachers
Links
Heads Up! Please make a copy of any documents you plan to share with students.
For the students
- CS Bingo Cards - Handout
- The toString() Method - Video
- U2L9 Extra Practice - Handout
Vocabulary
- escape sequence - starts with a
\
to indicate how to display aString
- override - to define a method in a subclass with the same method signature as a method inherited from a superclass
Teaching Guide
Warm Up (10 minutes)
CS Bingo
Remarks
We have learned a lot of new terms so far! Let's review some of these terms through a game of CS Bingo.
Distribute: Give each student a unique CS Bingo Card.
Do This: Review the instructions for playing CS Bingo.
Do This: Play the music clip to cue the CS Bingo activity. Choose a random definition and read it aloud to the class. Give students a moment to check their bingo card for the correct term, then state the correct term. Repeat until a student yells "Java."
To allow for multiple students to "win" the game, continue pulling definitions until a couple more students win as well.
Activity (30 minutes)
Printing an Object (15 minutes)
Remarks
When we want to get information about the state of an object, we have to call each accessor method. If there are multiple instance variables, this can result in multiple lines of code just to get information about an object. What if there was an easier way?
Do This: Review the lesson objectives.
Do This: Direct students to Level 1 on Code Studio to predict the program's outcome, then run the program to compare their predictions to the actual outcome.
Discuss: Click through the animated slide to display the prompts.
- What do you notice about the output of this program?
- What do you wonder about the output of this program?
Discussion Goal: Students notice that printing an object displays random letters and numbers to the console instead of the values stored in its instance variables. Students may wonder what the letters and numbers mean and why the values are not printed.
Display: Show the video – The toString() Method.
Do This: Click through the animated slide to explain why printing an object that doesn't have a toString()
method in its class does not print the values stored in its instance variables.
Do This: Click through the animated slide to review the Object
class and introduce its toString()
method.
Discuss: Use the Hold That Thought strategy to discuss the prompt.
- If we could write our own version of the
toString()
method in ourDessert
class, what information would we want it to include?
Discussion Goal: Students suggest including the instance variables in the toString()
method.
Do This: Click through the animated slide to define overriding and demonstrate overriding the toString()
method and printing an object.
Remarks
Notice that this code segment did not explicitly call the object's toString()
method. The object's toString()
method is automatically called when we pass an object reference to a print statement or when we concatenate an object reference with a String
.
Discuss: Is this information useful? Why or why not?
Discussion Goal: Students note that the output contains the information about the object, but it is not in a user-friendly format.
Have students consider how the output might look if there were more instance variables. Ask students if this format makes it easy to quickly identify the current state of an object and what would make it easier to read.
Do This: Explain that the super
keyword can be used to call the superclass method.
Do This: Introduce escape sequences, and have students determine the output for each example:
- Printing a quotation mark (
\"
) - Printing a new line (
\n
) - Printing a backslash (
\\
)
Overriding Object Class Methods (15 minutes)
Do This: Direct students to Level 2 on Code Studio to complete Levels 2, 3, and 4. Students write a toString()
method in the Dessert
class then continue to Level 3 to refactor the code. On Level 4, students write toString()
methods in the Dessert
subclasses.
Students use the Dessert
classes they have developed in previous lessons to write toString()
methods. These classes are revisited throughout the curriculum. Students expand on this problem and these classes to add new behaviors and create arrays of Dessert
objects in future units.
Remarks
This is a good time to commit our code and save our new version of our Dessert
classes to the Backpack.
Do This: Play the music clip to cue committing their code and saving the new version of the Dessert
classes to the Backpack.
Wrap Up (5 minutes)
Overriding Methods
Remarks
You have learned to override a method from the Object
class. We can also override methods in other classes.
Discuss: Use the Hold That Thought strategy to discuss the prompt.
- Are there other methods you might want to override? For instance, a method in the
Painter
class? - What would you have the new version of the method do?
Discussion Goal: Students suggest methods in the Painter
class they would want to override, such as move()
to check if a Painter
object can move first before moving forward or paint()
to check if a Painter
object has paint first before painting.
Do This: Review the concepts covered in this lesson.
Display: Key Vocabulary
Assessment: Check for Understanding
Check For Understanding Question(s) and solutions can be found in each lesson on Code Studio. These questions can be used for an exit ticket.
AP Classroom Topic Questions
To assign questions from the AP Classroom Question Bank that align with this lesson, create a custom quiz in AP Classroom by searching the Question Bank for the Essential Knowledge statements listed at the top of this lesson plan. You can find instructions and video demonstrations to do this on AP Central.
The following Topic Questions in AP Classroom can be assigned as a formative assessment for this lesson:
- Topic Questions 2.6
- Topic Questions 9.7
Note: Some Learning Objectives and Essential Knowledge statements in the suggested Topic Questions are covered in later units.
This work is available under a Creative Commons License (CC BY-NC-SA 4.0).
If you are interested in licensing Code.org materials for commercial purposes contact us.