instagram

This lesson focuses on code quality. Starting from a working program, students refactor the code to be more readable, writing helper functions thinking structurally about a complex program.

Product Outcomes

  • Students refactor existing code to make an emoji image

Materials

Preparation

🔗Refactoring - a Case Study 40 minutes

Overview

Student are introduced to the programming concept of refactoring, which closely models the Mathematical Practice 7: Identify and make use of structure. Students create an emoji generator, and then refactor it to make the code cleaner.

Launch

One of the most common tasks software developers find themselves performing is refactoring code. This means taking code that is already working and complete, and cleaning it up: adding comments, removing unnecessary expressions, and generally making their code more readable and usable by others.

Refactoring does not change the behavior of the program, only the appearance of the code. For instance, a messy expression like:

* (9 * 9)) * (1 + 1)

could be refactored into:

num-sqr(4) + (3 / 2 * num-sqr(9)) * 2

Both expressions return the same value, but the second is much more readable. Refactoring can involve using existing functions (such as num-sqr in the example above) or writing new functions to perform small tasks.

Open the Robot Emoji file and click "Run". In this file, there are two versions of the same program written by different students.

  • Take a look at the definitions in this file, and, with your partner, discuss what you notice.

  • Which student’s code is easiest to read and understand? Which formatting do you like better?

  • If you were collaborating on a project with another programmer, which version of this code would you rather to receive, and why?

Discuss the differences in documentation, formatting, and organization of the two versions of the emoji code.

Investigate

Let’s try refactoring an existing program that draws an image.

Open the Emoji Refactoring file and click "Run".

This code draws an image of a simple face emoji. Without changing the final image produced, can you see any opportunities to edit the code to make it more readable?

  • Refactor the code! This could include adding comments, more space between expressions, or simplifying the existing expressions.

  • When you’re finished, write one more expression to create a smaller (emoji-sized) version of the original image.

This activity can be done individually or as a class, with students giving suggestions for refactoring code projected at the front of the room. Once the refactoring is completed, students can practice using image functions to create an emoji of their own.

These materials were developed partly through support of the National Science Foundation, (awards 1042210, 1535276, 1648684, 1738598, 2031479, and 1501927). CCbadge Bootstrap by the Bootstrap Community is licensed under a Creative Commons 4.0 Unported License. This license does not grant permission to run training or professional development. Offering training or professional development with materials substantially derived from Bootstrap must be approved in writing by a Bootstrap Director. Permissions beyond the scope of this license, such as to run training, may be available by contacting contact@BootstrapWorld.org.