Next we’ll get more practice working with interfaces.
We’ll move past our friend Comparable and look at two new interfaces that allow us to integrate with a built-in language feature—the for in loop.
Super cool!
Let’s go…
Iterable and IteratorIterable and IteratorLet’s have more fun with interfaces.
Remember our good old for loop?
So it turns out that we can implement our own classes that can be used in the for loop.
Pretty cool!
Let’s look at the interfaces that are required and consider how they work.
We’ll examine them both at once, since they are really designed to work together:
Now let’s put what we know to use to build a simple random number generator.
We’ll create a class that can be used on the right side of a for loop and generates a certain number of random Int values.
Next, let’s look at a few improvements to our iterable random number generator based on what we’ve already done.
Create a public class named MyString.
MyString should provide a public constructor that accepts a single String argument.
Your string variable should be private.
MyString should also implement the Comparable interface.
Normally Strings are compared lexicographically: "aa" comes before "z".
MyString should compare instances based on the length of its stored String.
So MyString("aaa") should come after MyString("z"), since "aaa" is longer than "z".
Note that you should implement Comparable<MyString>, meaning that MyString instances can be compared with
other MyString instances but not with other objects.
As a result, the signature of compareTo will be fun compareTo(other: MyString): Int, accepting a
MyString rather than Any.
You will probably need to review the documentation for Comparable.
Create a class named BothGreater that stores two Int values set by the primary constructor.
Neither should be publicly visible.
BothGreater should also implement the Comparable<BothGreater> interface, returning 1 for a positive result
and -1 for a negative result.
An instance of BothGreater is greater than a second instance if both Int values are larger, and is lesser
than if both Int values are smaller.
Otherwise, compareTo should return 0.
You will probably need to review the documentation for Comparable.
(Note that this is Java documentation.)
Because we are using the type parameter BothGreater to the Comparable interface, compareTo accepts an
BothGreater as an argument.
Need more practice? Head over to the practice page.