I’m glad you’re back. The last few lessons were heavy, so in this one we’re going to slow down and integrate. We’ll discuss object equality and how to make object copies. While these are new, they are largely straightforward applications of things that we already know.
What does it mean for two things to be the same? On one hand this is a deep epistemological question. But in our computer programs, it has practical importance.
For example, I might have a list of items and want to remove all of the duplicates, or find something. I might require a key of some kind to access some information, and need to be able to tell whether the key you present is the same as the one that is required. These are examples of places in computer code where equality matters.
Kotlin’s notion of equality is left up to us, the class
designer, to define.
Let’s look at an example of how.
Note that, in Kotlin, using the ==
operator represents a call to the equals
method on the first class passing the second as an argument:
Any.equals
Any.equals
equals
is one of the methods defined by Any
.
That means, if we don’t override equals
, our class
es inherit the equals
method defined by Any
.
This doesn’t do nothing, but it’s not particularly useful.
Let’s see how it works:
It may surprise you to learn that Kotlin has no built-in way to copy an object. The reasons for this are somewhat out of scope for us at this point. Put simply, objects may have complex internal state that is difficult or impossible to copy. Put another way, not every object may represent something that can be copied.
However, when our objects can be copied we can enable this using a pattern called a copy constructor. Let’s look at how to do that together:
James Mickens is a Harvard professor who does work on distributed systems and large-scale web services. He’s had papers published in the most prestigious venues in systems and networking, and received tenure at Harvard in 2019(1).
James is also funny. Very funny! You can find his technology-driven humor in written form, but at least I think he’s at his best when giving a talk. Here’s one brief example, that also touches on an important issue:
(And if you have more time, this longer talk is a personal favorite.)
Need more practice? Head over to the practice page.