Kotlinlearncs.online LogoJava

    ← Prev

    Index

    Next →

    Kotlin
    Java
    • 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

    Catching Exceptions

    try {
    int notANumber = Integer.parseInt("You are not alone!");
    } catch (NumberFormatException e) {
    System.out.println("That's not a number!");
    }

    We’ll spend the next few lessons learning about Java exceptions. Errors are a normal part of programming, and Java provides nice ways for handling them. Let’s learn more!

    Exceptions: When Things Go Wrong
    Exceptions: When Things Go Wrong

    It’s natural to make mistakes when you write computer programs. But even well-designed programs may encounter errors!

    Imagine the following scenario. You design an app that prompts the user to enter a number that you plan to use in a mathematical calculation. What you receive is a String, so you need to convert it to an Integer. What could go wrong? Let’s find out!

    // Problems with Integer Parsing

    What is happening here? Let’s examine the documentation for Integer.parseInt to find out.

    try-catch
    try-catch

    In Java, when code that we write or call encounters an error, it can throw an Exception. Over the next few lessons we’ll explore Java’s error-handling mechanisms, including types of exceptions and how to design and throw them in our own code.

    But let’s start at looking at how to handle exceptions that we might encounter. To do this we use a new Java programming construct: try-catch. Let’s see how that works!

    // try-catch

    try-catch consists of two or more code blocks. First, the try block, containing the code that might throw an exception. Second, one or more catch blocks that handle various kinds of exceptions that the code might throw. Let’s look at some code that can generate several kinds of exceptions and see how to handle them:

    import java.util.Random
    Random random = new Random();
    int choice = random.nextInt()

    Practice: Catching Exceptions

    Created By: Geoffrey Challen
    / Version: 2020.11.0

    Create a public class called Catcher that defines a single class method named catcher. catcher takes, as a single parameter, a Faulter that has a fault method. You should call that fault method. If it generates no exception, you should return 0. If it generates a null pointer exception, you should return 1. If it throws an illegal argument exception, you should return 2. If it creates an illegal state exception, you should return 3. If it generates an array index out of bounds exception, you should return 4.

    Exception Control Flow
    Exception Control Flow

    One of the more difficult parts of exceptions is understanding how code flow changes when an exception is thrown. When an exception is thrown, Java jumps into the first enclosing catch block. This might be in that method, or in calling method, or even in the caller’s caller or higher up. Let’s look at an admittedly contrived example:

    void foo1() {
    foo2();
    }
    void foo2() {
    foo3();
    }
    void foo3() {
    foo4();
    }
    void foo4() {
    Object o = null;
    System.out.println(o.hashCode());
    }

    Don’t worry if this doesn’t make perfect sense yet—we’ll get lots of practice with this over the next few days!

    Homework: Multi Catcher

    Created By: Geoffrey Challen
    / Version: 2021.9.0

    Provide a public class Catcher that implements a static method named retrieveValue. retrieveValue takes an instance of Faulter and returns the result of calling its getValue method, which returns an int.

    Seems simple! Except there is just one small problem. Faulter was implemented by a friend that didn't take CS 124, and so it's getter is pretty buggy. A lot of the time it will throw an exception rather than return the value. But you did take CS 124, and so you know how to catch the exception and retry the call to getValue. Note that getValue may fault multiple times before succeeding, and you should retry until it successfully returns a value.

    More Practice

    Need more practice? Head over to the practice page.