KotlinCS 124 LogoJava

Inheritance

public class Pet {
protected String name;
public Pet(String setName) {
name = setName;
}
public String getName() {
return name;
}
}
public class Dog extends Pet {
private String breed;
public Dog(String setName, String setBreed) {
super(setName);
breed = setBreed;
}
public String getBreed() {
return breed;
}
@Override
public String toString() {
return "A dog named " + name + " is a " + breed;
}
}
Dog chuchu = new Dog("Chuchu", "mutt");

Next we begin our exploration of relationships between Java classes. So far the classes that we’ve created have stood alone—or at least we thought. In this lesson we’ll see that all Java classes are related to each other, and how to utilize those connections to reflect real-world relationships and improve our Java code.

Debugging Challenge
Debugging Challenge

But let’s start with some debugging practice!

First, A Puzzle
First, A Puzzle

Let’s begin this lesson with a puzzle:

public class Pet { }
Pet chuchu = new Pet();
System.out.println(chuchu.toString());

If we compile and run this code, we see something printed. Which is… weird! Right? The snippet above uses dot notation to call a method on chuchu called toString. But where is that instance method defined? Do you see it? I don’t! So why does this code work? On some level, this lesson is about figuring that out.

Inheritance
Inheritance

Java allows us to establish relationships between classes. Specifically, Java allows one class to inherit state and behavior by extending another class. Let’s look at an example of this:

// I'm not using encapsulation here for the sake of brevity...
public class Person {
public String name;
}
// Student extends Person and so inherits its state and behavior
public class Student extends Person {
public String level;
}
Student you = new Student();
// This already makes sense to us: Student has an String instance variable named level
// It's declared in the declaration of Student
you.level = "Freshman";
// But where is this instance variable coming from?
// It's inherited from Person!
you.name = "Excellent Student";
System.out.println(you.name + " is a " + you.level);

extends and Inheritance Terminology
extends and Inheritance Terminology

We use the extends keyword to create a relationship between two classes.

This relationship is one way. The terminology that we use here is helpful. We refer to the class that is extended as the parent and the class that extends as the child:

// Person is the parent of Student
public class Person { }
// Student is the child of Person
public class Student extends Person { }

This helps us remember that we cannot create circular class relationships. This won’t compile:

public class One extends Two { }
public class Two extends One { }

We can also establish multiple levels of inheritance. When we do, we use similar family-based terminology:

// Person is the parent of Student and the ancestor of Freshman
public class Person { }
// Student is the child of Person
public class Student extends Person { }
// Freshman is the child of Student and a descendant of Person
public class Freshman extends Student { }
// Sophmore is the child of Student and a descendant of Person
public class Sophmore extends Student { }

super
super

When we extend a class, we need to make sure that our parent class is set up properly when instances of our class are created. For example, consider the class hierarchy below. Whenever an instance of Student is created, we are also creating an instance of Person. So we need to make sure that the Person constructor gets called. Let’s see how to do that:

public class Person {
private String name;
public Person(String setName) {
name = setName;
}
}
public class Student extends Person {
}
Student student = new Student();

public and private
public and private

As a final observation, note that private still works the way that we expect. A class that extends another does not gain access to its private variables:

public class Person {
private String name;
public Person(String setName) {
name = setName;
}
}
public class Student extends Person {
}
Student student = new Student();

Object
Object

However, none of this really resolves our puzzle. We still don’t know why this works:

public class Pet { }
Pet chuchu = new Pet();
System.out.println(chuchu.toString());

Pet doesn’t extend anything. So where is toString coming from?

To fill in the missing piece of the puzzle, we need to meet the class that sits at the top of Java’s class hierarchy, Object:

Overriding Inherited Methods
Overriding Inherited Methods

So it’s nice and all that every class will inherit a toString method from Object. But this method really isn’t very useful!

public class Pet { }
Pet chuchu = new Pet();
System.out.println(chuchu.toString());

For example, if my Pet has a String name, I might want to display that instead. Can we do this? Yes! Let’s look at how:

public class Pet {
private String name;
public Pet(String setName) {
name = setName;
}
}
Pet chuchu = new Pet("Chuchu");
System.out.println(chuchu.toString());

We’ll get into this more tomorrow and review exactly how Java locates various method and field names when it compiles your code.

CS People: Safiya Noble
CS People: Safiya Noble

If you’re like me, you use a search engine constantly. But have you ever stopped to consider where the results come from? The Internet is huge! Without search, most of us would never find our way around. And so what ends up on the first page of results matters. A lot.

Professor and MacArthur Award Winne Safiya Noble has examined how biases infiltrate Google and other search engine results in her seminal book “Algorithms of Oppression”. Listen to her describe some of her work and its broader implications:

More Practice

Need more practice? Head over to the practice page.