


This article brings you relevant knowledge about java, which mainly introduces the principles and application-related issues of the exception handling mechanism, including Exception and Error, trycatch syntax, and trycatch execution order Wait, I hope it helps everyone.
Recommended study: "java Learning Tutorial"
1. Introduction to Java exceptions
Everyone may be interested in trycatch They are no strangers to it, and they are all very proficient in using it.
When an error occurs during the running of the program, an exception will be thrown. It is better to throw an exception than to terminate the program.
You can also perform a trycatch operation when it is known that an error is about to occur, and perform certain special operations when an exception occurs.
1, Exception and Error
Exception and Error both inherit from the Throwable class. In Java, only instances of the Throwable type can be thrown or caught. It is The basic component types of exception handling mechanisms.
Exception is a predictable abnormal situation, which can be obtained and processed outside the business.
Error is an unpredictable exception. When an error occurs, it will directly cause the JVM to be unable to handle it.
Exception is divided into checked exceptions and non-checked exceptions.
Checked exceptions must be caught using try catch when writing code (for example: IOException exception).
With non-checked exceptions, the compiler will not find out whether this will occur once, such as a null pointer exception. This kind of exception can be avoided through specification during code writing or use. For example, the findbugs function of sts can detect null pointer exceptions in the code.
2. What is the difference between NoClassDefFoundError and ClassNotFoundException?
NoClassDefFoundError is an error thrown by the JVM when it cannot find the corresponding class when loading a class through classpath.
ClassNotFoundException: If this exception may occur during compilation, it must be thrown during compilation.
NoClassDefFoundError occurrence scenarios:
- The class or jar that the class depends on does not exist
- The class file exists, but in a different domain. In short, Just can’t find the
ClassNotFoundException scenario:
- When calling the forName method of class, the specified class cannot be found
- findSystemClass in ClassLoader () method, the specified class cannot be found
public static void main(String[] args) { try { Class.forName("test"); } catch (ClassNotFoundException e) { e.printStackTrace(); }}
2. trycatch syntax
1. try statement
try statement is used Braces enclose a section of code that may throw one or more exceptions.
2. Catch statement
The parameters of the catch statement are similar to the declaration of a method, including an exception type and an exception object. The exception type must be a subclass of the Throwable class, which specifies the exception type processed by the catch statement. The exception object is generated and captured by the runtime system in the code block specified by try. The curly braces contain the processing of the object, where Object methods can be called.
There can be multiple catch statements to handle different types of exceptions respectively. The Java runtime system detects the exception type handled by each catch statement from top to bottom until a catch statement with a matching type is found. Here, type matching means that the exception type handled by catch is exactly the same as the type of the generated exception object or its parent class. Therefore, the order of catch statements should be from special to general.
3. Finally statement
Regardless of whether an exception is thrown in the try, the code in the finally statement will be executed. The most important function of the finally statement block should be to release Resources applied for.
4. Throws statement
throws always appears after the function header to indicate exceptions that may be thrown by the method.
5. The throw statement
is similar to throws, but the location is different. throw is placed in the catch module. The program will terminate immediately after the throw is executed. The code after throw No longer executed, except finally.
6. Throwing exceptions
public void test() throws Exception{ throw new Exception();};
7. Catching exceptions
try{ //代码区}catch(Exception e){ log.error("error: {}", e);}finally{ //最后必须执行的部分}
3. Trycatch execution sequence
Start execution from the first line of code in try. When the code that causes an exception is executed, the JVM will create an exception object.
Determine whether catch can capture the exception object created by jvm.
If caught, jump to the catch code block without ending the program and continue with the code logic in catch;
If it cannot be caught, print the exception information directly and end the program.
If there is no exception in try, the code in try will be executed, skip the catch, and enter the finally code block.
4. Exception handling principles
If an exception that needs to be detected is thrown in a method, it must be declared in the method, otherwise it must be caught with try-catch in the method, otherwise the compilation will fail.
If the function declaring an exception is called, either try-catch or throws, otherwise the compilation fails.
When to catch and when to throw? The functional content can be solved, but it cannot be solved by using catch. Use throws to tell the caller that there is a caller to solve it.
If a function throws multiple exceptions, there must be multiple corresponding catches for targeted processing when calling.
Recommended study: "java tutorial"
The above is the detailed content of Completely master the principles and applications of Java exception handling mechanism. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
