Home Java javaTutorial Exception handling mechanism in Java

Exception handling mechanism in Java

Jun 09, 2023 am 09:37 AM
java deal with abnormal

Java is a beautiful and easy-to-read programming language, but errors will inevitably occur during the development process. In order to solve these errors, Java introduced an exception handling mechanism. This mechanism allows programmers to detect problems and take appropriate action while the program is running. This article will discuss the exception handling mechanism in Java, including how to throw, catch and handle exceptions.

What is the exception?

Exception is an event that indicates that an error occurred during program execution. For example, division by zero, a null pointer reference, or invalid input may occur. In Java, an exception refers to a problem encountered by a program during execution, which affects the normal execution of the program and causes the program to terminate abnormally.

Exception classification in Java

Exceptions in Java can be classified into two types: checked exceptions and unchecked exceptions.

  • Checked exceptions: are those exceptions that must be checked at compile time. If such an exception may be thrown in the code, it must be handled explicitly. For example, IOException and SqlException are checked exceptions.
  • Unchecked exceptions: are those exceptions that cannot be caught during code compilation. This exception is usually caused by programmer error or generated by the Java runtime. For example, NullPointerException and ArrayIndexOutOfBoundsException.

How to throw an exception?

When a problem is found in the program, you can use the throw statement to throw an exception.

throw new Exception("发生异常了");
Copy after login

In this example, a new Exception object is thrown. If the throw statement is followed by an object of a custom exception class, the specified exception will be thrown. The following example demonstrates how to customize an exception and use it in a program:

public class CustomException extends Exception {
    public CustomException(String message) {
        super(message);
    }
}
Copy after login

Using a custom exception in a program:

public void checkAge(int age) throws CustomException {
    if (age < 0 || age > 100) {
        throw new CustomException("年龄不在合法范围内");
    }
    //继续执行其他代码
}
Copy after login
Copy after login

In the above example, if the age is less than 0 or greater than 100, A CustomException is thrown.

How to catch exceptions?

One of the ways to handle exceptions is to "catch" it. The try-catch block in Java is used to catch exceptions.

try {
    //需要尝试执行的代码
} catch (Exception e) {
    //处理异常的代码
}
Copy after login

In this example, any code that may throw an exception can be placed in a try block. When executing the code in the try block, if an exception occurs, the program jumps to the catch block. In the catch block, the programmer can take necessary steps to handle the exception. The following is a simple Java program that demonstrates the processing of try-catch blocks.

public static void main(String[] args) {
    try {
        int i = 1/0;
    } catch (Exception e) {
        System.out.println("发生异常了:" + e);
    }
}
Copy after login

In the above example, the program will try to divide 1 by 0. Since this is not allowed, an ArithmeticException is thrown. The catch block will catch this exception and output "An exception occurred: java.lang.ArithmeticException: / by zero" on the console.

How to handle exceptions?

One way to handle exceptions is to throw them directly from the method. This will usually be caught and handled by the caller. Another way to handle exceptions is to use a method with a throws clause to specify the exceptions that need to be handled. Here is an example:

public void checkAge(int age) throws CustomException {
    if (age < 0 || age > 100) {
        throw new CustomException("年龄不在合法范围内");
    }
    //继续执行其他代码
}
Copy after login
Copy after login

The throws clause specified after the method signature tells the caller that a checked exception must be caught or thrown. If the caller does not handle this exception, the program will terminate and output the exception message.

Another way to handle exceptions is to use a finally block. The code in the finally block is executed after the try and catch blocks and will be executed regardless of whether an exception occurs.

try {
    //需要尝试执行的代码
} catch (Exception e) {
    //处理异常的代码
} finally {
    //无论是否发生异常都会执行的代码
}
Copy after login

An example of using a finally block is to close an open file or network resource. Since these resources are limited in Java, you need to remember to close them to release them.

BufferedReader reader = null;
try {
    reader = new BufferedReader(new FileReader("文件名"));
    //对文件执行一些操作
} catch (Exception e) {
    //处理异常的代码
} finally {
    try {
        if (reader != null) {
            reader.close();
            reader = null;
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
}
Copy after login

In this example, the code in the try block opens a file and performs some operations. If an error occurs in the try block, the program jumps to the catch block and handles the exception. Regardless of whether an exception occurs in the try block, the code in the finally block closes the open file.

Conclusion

Java's exception handling mechanism enables programmers to detect errors and take appropriate measures while the program is running. This article discusses Java's exception classification, methods of throwing exceptions, catching exceptions, and handling exceptions in depth, and provides some specific examples. When writing Java code, programmers should follow best practices to ensure code stability and reliability.

The above is the detailed content of Exception handling mechanism in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Square Root in Java Square Root in Java Aug 30, 2024 pm 04:26 PM

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Perfect Number in Java Perfect Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Random Number Generator in Java Random Number Generator in Java Aug 30, 2024 pm 04:27 PM

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Armstrong Number in Java Armstrong Number in Java Aug 30, 2024 pm 04:26 PM

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Weka in Java Weka in Java Aug 30, 2024 pm 04:28 PM

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Smith Number in Java Smith Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

Java Spring Interview Questions Java Spring Interview Questions Aug 30, 2024 pm 04:29 PM

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

See all articles