Kotlinlearncs.online LogoJava

    ← Prev

    Index

    Next →

    Kotlin
    Java
    • Streams : 58

    • Generics : 57

    • Implementing a Map : 56

    • Hashing : 55

    • Binary Search : 54

    • Quicksort : 53

    • Merge Sort : 52

    • Sorting Algorithms : 51

    • Practice with Recursion : 50

    • Trees and Recursion : 49

    • Trees : 48

    • Recursion : 47

    • Lists Review and Performance : 46

    • Linked Lists : 45

    • Algorithms and Lists : 44

    • Lambda Expressions : 43

    • Anonymous Classes : 42

    • Practice with Interfaces : 41

    • Implementing Interfaces : 40

    • Using Interfaces : 39

    • Working with Exceptions : 38

    • Throwing Exceptions : 37

    • Catching Exceptions : 36

    • References and Polymorphism : 35

    • References : 34

    • Data Modeling 2 : 33

    • Equality and Object Copying : 32

    • Polymorphism : 31

    • Inheritance : 30

    • Data Modeling 1 : 29

    • Static : 28

    • Encapsulation : 27

    • Constructors : 26

    • Objects, Continued : 25

    • Introduction to Objects : 24

    • Compilation and Type Inference : 23

    • Practice with Collections : 22

    • Maps and Sets : 21

    • Lists and Type Parameters : 20

    • Imports and Libraries : 19

    • Multidimensional Arrays : 18

    • Practice with Strings : 17

    • null : 16

    • Algorithms and Strings : 15

    • Strings : 14

    • Functions and Algorithms : 13

    • Practice with Functions : 12

    • More About Functions : 11

    • Errors and Debugging : 10

    • Functions : 9

    • Practice with Loops and Algorithms : 8

    • Algorithms I : 7

    • Loops : 6

    • Arrays : 5

    • Compound Conditionals : 4

    • Conditional Expressions and Statements : 3

    • Operations on Variables : 2

    • Variables and Types : 1

    • Hello, world! : 0

    Generics

    public class Counter<T> {
    private T value;
    private int count;
    public Counter(T setValue) {
    if (setValue == null) {
    throw new IllegalArgumentException();
    }
    value = setValue;
    count = 0;
    }
    public void add(T newValue) {
    if (value.equals(newValue)) {
    count++;
    }
    }
    public int getCount() {
    return count;
    }
    }
    Counter<Integer> counter = new Counter<>(4);
    assert counter.getCount() == 0;
    counter.add(4);
    assert counter.getCount() == 1;
    counter.add("test");

    Next we’ll examine Java generics. This is an advanced topic, but one that you are bound to encounter as you continue to use Java. Generics also allow the compiler to better check our code—and we always want that. So let’s do this!

    Using Generics
    Using Generics

    We’ve already seen generics at use when using Java’s containers like Lists. We can create a bare List, but using one requires dangerous downcasting:

    import java.util.List;
    import java.util.ArrayList;
    // This List can store any Object
    List list = new ArrayList();
    list.add("test");
    list.add(4);
    String s = (String) list.get(1); // Oh no! A runtime error...
    System.out.println(s.length());

    Instead, by providing a type parameter when we create the list, we can get the compiler to help us:

    import java.util.List;
    import java.util.ArrayList;
    // This List can store only Strings
    List<String> list = new ArrayList<>();
    list.add("test");
    list.add(4); // Now the compiler will fail here...
    String s = (String) list.get(1);
    System.out.println(s.length());

    Remember: runtime errors cause things to fail right in the user’s face. This is not good! Compiler errors, in contrast, must be caught in development. So transforming runtime errors to compiler errors helps us produce more correct programs. This is good!

    Generifying Our Classes
    Generifying Our Classes

    OK—so now we know how to use classes that accept type parameters. But how about using the in our own classes? This turns out to not be too hard! Let’s explore together.

    To start, let’s design a class that does not support type parameters:

    public class LastN {
    }

    Next, let’s look at how to add a generic type parameter to our example above. This will allow the compiler to ensure that all of the values added to LastN are the same type!

    public class LastN {
    }

    Compiling Generic Classes
    Compiling Generic Classes

    There are a few important things to understand about how Java compiles generic classes. First, the type parameter is not a variable. You can use them in most places that you would normally use a type, but you can’t assign to them, or use them in a constructor call:

    public class Example<E> {
    private E value; // This is fine, since E replaces a type
    public Example() {
    E = String; // But you can't reassign a type parameter
    value = new E(); // Also doesn't work, since maybe E doesn't have an empty constructor?
    }
    }

    One useful way to think about what happens when your program is compiled is that the compiler replaces the type parameters with types used in your code. So, given this generic class:

    public class Example<E> {
    private E value;
    public Example(E setValue) {
    value = setValue;
    }
    }
    Example<String> example = new Example<>("test");

    If I create a Example<String>, it’s almost as if I had written this code:

    public class Example {
    private String value;
    public Example(String setValue) {
    value = setValue;
    }
    }
    Example example = new Example("test");

    Let’s talk through a few more examples together:

    Type Parameter Naming Conventions
    Type Parameter Naming Conventions

    You can use any name to name your type parameters. But Java has established some conventions. Specifically:

    Parameterized Interfaces
    Parameterized Interfaces

    Just like Java classes, interfaces can also accept type parameters. That includes one interface that we are fairly familiar with by now!

    public class Dog {
    private String name;
    public Dog(String setName) {
    name = setName;
    }
    }

    One Big Generic Gotcha
    One Big Generic Gotcha

    You may have noticed above that when we implemented LastN we used a List rather than an array. That wasn’t an accident! Let’s see why and what problems arise with generic arrays.

    public class LastN {
    }

    Bounded Type Parameters
    Bounded Type Parameters

    (What follows is bonus bonus material, but very cool!)

    Let’s consider another example where we’d like to use generics:

    public class Maximum<E> {
    private E maximum;
    public Maximum(E setMaximum) {
    maximum = setMaximum;
    }
    public void add(E newValue) {
    // Change the maximum if newValue is bigger
    }
    }

    Let’s explore how we can complete the example above using another feature of Java’s generics system: bounded type parameters.

    public class Maximum<E> {
    private E maximum;
    public Maximum(E setMaximum) {
    maximum = setMaximum;
    }
    public void add(E newValue) {
    // Change the maximum if newValue is bigger
    }
    }

    And There’s More…
    And There’s More…

    This lesson has barely scratched the surface of what is possible with Java generics. If you want to learn more, this is a good place to start.

    Generics in Javadoc
    Generics in Javadoc

    You regularly see generic type parameters in Javadoc. Now that we’ve discussed a bit about how to use type parameters in our own code, we’re more prepared to understand documentation for classes that use them. Let’s look at one familiar example together and discuss how to identify and interpret these type parameters.

    Homework: BinaryTree Balanced

    Created By: Geoffrey Challen
    / Version: 2020.11.0

    Let's determine if a binary tree is height balanced. A tree is height balanced if the height of any node's two subtrees (right and left) never differ by more than 1.

    Provide a public class named BinaryTreeBalanced providing a single public class method named isBalanced. isBalanced accepts a BinaryTree and returns true if the tree is balanced, and false otherwise. If the passed tree is null, you should throw an IllegalArgumentException.

    A few hints on this problem:

    • Your main entry point method will probably need to start the recursion using a private helper method, because the main method needs to throw on null which you want to handle as a valid base case in your recursion
    • This helper method will probably have the same arguments as the main method, so you'll need to change something else to make sure that the method signature is different and the compiler can determine which one you want to use
    • You will probably need a second helper method implementing tree height that you call in your primary recursive method

    More Practice

    Need more practice? Head over to the practice page.