Home Java javaTutorial Detailed explanation of the assert keyword in Java traps

Detailed explanation of the assert keyword in Java traps

Jan 16, 2017 pm 04:04 PM

1. Overview

There is the assert key in C and C++ languages, which means assertion.
In Java, there is also the assert keyword, which means assertion. The usage and meaning are similar.

2. Syntax

In Java, the assert keyword was introduced from JAVA SE 1.4. In order to avoid errors caused by using the assert keyword in older versions of Java code, Java is executing By default, assertion checking is not enabled (at this time, all assertion statements will be ignored!). If you want to enable assertion checking, you need to use the switch -enableassertions or -ea to enable it.

The assert keyword syntax is very simple and has two uses:

1. assert
If is true, then the program Continue execution.
If it is false, the program throws AssertionError and terminates execution.

2. assert :
If is true, the program continues execution.
If it is false, the program throws java.lang.AssertionError and enters .

3. Application examples

The following is an example to illustrate its usage:

public class AssertFoo {
    public static void main(String args[]) {
        //断言1结果为true,则继续往下执行
        assert true;
        System.out.println("断言1没有问题,Go!");

        System.out.println("\n-----------------\n");

        //断言2结果为false,程序终止
        assert false : "断言失败,此表达式的信息将会在抛出异常的时候输出!";
        System.out.println("断言2没有问题,Go!");
    }
}
Copy after login

Save the code to C:\AssertFoo.java, and then execute it as follows to view the console output:

1. Compiler:
C:\>javac AssertFoo.java

2. The default execution program is without the -ea switch:
C:\>java AssertFoo
There is no problem with assertion 1, Go!

-----------------

There is no problem with assertion 2, Go!

3. Turn on the -ea switch and execute the program:
C:\>java -ea AssertFoo
There is no problem with assertion 1, Go!

-----------------

Exception in thread "main" java.lang.AssertionError: Assertion failed, the information of this expression will
Will be output when an exception is thrown!
                                                                                                                                         Traps
                                                                                                                                 The assert keyword is simple to use, but using assert will often make you fall into a deeper and deeper trap. . Should be avoided. After research, the author summarized the following reasons:

1. The assert keyword needs to be explicitly turned on at runtime to take effect, otherwise your assertion will have no meaning. Currently, mainstream Java IDE tools do not enable the -ea assertion checking function by default. This means that if you use IDE tools to code, you will have some trouble when debugging and running. Moreover, for Java Web applications, the program code is deployed in the container, and you cannot directly control the running of the program. If you must turn on the -ea switch, you need to change the running configuration parameters of the Web container. This brings great inconvenience to the transplantation and deployment of programs.

2. Using assert instead of if is the second trap. The judgment of assert is similar to that of if statement, but the functions of the two are essentially different: the assert keyword is intended to be used when testing and debugging the program, but if you accidentally use assert to control the business process of the program, then it will not be used during testing and debugging. Removing the assert keyword after completion means modifying the normal logic of the program.

3. If assert fails, the program will exit. This would never be tolerated in a production environment. Potential errors in the program are generally solved through exception handling. But using assertions is very dangerous. Once it fails, the system will hang.


5. Thoughts on assert

Since assert is used for debugging test programs and is not used in formal production environments, we should consider better testing JUint to replace its role. , the functions provided by JUint are even better than assert. Of course, debugging and testing can be carried out through IDE debug. From this point of view, the future of assert is bleak.

Therefore, you should avoid using the assert keyword in Java, unless one day Java supports the -ea switch by default, then you can consider it. Compare how much benefit and how much trouble assert can bring you. This is the principle for us to choose whether to use it.

============================================== ================
comment:
On the other hand, in some open source components, such as validator and junit, the judgment process seems to use the assertion style, which is very confusing. It is possible that a large number of assertions are used, but I cannot be sure without looking at the source code.
If it is a simple test during the development phase, junit is a convenient and powerful tool. There is no reason to write assertions yourself and not use it.

============================================== ================
comment:
can first be used in unit test code. Junit is very intrusive. If a large amount of code in the entire project uses Junit, it will be difficult to remove it or choose another framework. If there are a lot of unit test codes and you want to reuse these unit test cases, you should choose assert instead of junit to facilitate the use of other unit test frameworks, such as TestNG. For the same reason, Junit should not appear in formal functional codes at all, and assert should be used.

assert is mainly suitable for base classes, framework classes, interface classes, core code classes, and tool classes. In other words, it is necessary to use it when the caller of your code is business code written by another programmer, or another subsystem. For example, if you make a quick sort algorithm

public static List<int> quickSort(List<int> list){
  assert list != null;
  // 申请临时空间
  //开始排序
  for(int i : list){
      //
  }
}
Copy after login

In this case, if you do not check the correctness of the parameters passed in, an inexplicable null pointer error will be thrown. Your callers may not know the details of your code, and debugging a null pointer error deep in a system is a waste of time. You should directly and clearly tell your caller that there is a problem with the parameters passed in. Otherwise, he will suspect that your code has a BUG. Using assert can prevent two programmers from blaming each other for problems with the code they wrote.

#assert applies to errors that you know what the specific error is, and you and your caller have agreed that your caller should eliminate or check the error. You tell your caller via an assertion. assert does not apply to errors caused by external systems, such as errors in user input data or format errors in an external file. These errors are not caused by your caller but by the user, and are not even exceptions, because input errors and file format errors are common, and these errors should be checked by the business code.

assert is more suitable for frequently called base classes, framework code, tool classes, core code, and interface code. This is why it is removed at runtime. The test code should enable the -ea parameter during the testing phase to facilitate careful testing of the core code deep in the system.

The reason Java uses assert less often is that Java has a very complete OO system and forced type conversions occur less often, so there is no need to frequently check whether the type of the pointer is correct and whether the pointer is empty like C. . At the same time, Java rarely manages memory or buffers directly, so there is no need to frequently check whether the incoming buffer is empty or has crossed the boundary.

But using assert well can help improve the correctness of the framework code and reduce the debugging time of users of the framework code.

============================================== ===================
comment: The purpose of
assert is to allow programmers to easily discover their own logic errors without affecting the efficiency of the program. . The errors found by assert should not occur at all and cannot be replaced by exceptions. Exceptions are allowed by the system, or are "errors" that are uncontrollable by the system. They are not logical problems of the programmer.

assert should be turned on during the development phase and turned off after release.

For more detailed explanations of the assert keyword in Java traps and related articles, please pay attention to 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 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks 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)

Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, Svelte Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, Svelte Mar 07, 2025 pm 06:09 PM

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue Fixed Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue Fixed Mar 07, 2025 pm 05:52 PM

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

Node.js 20: Key Performance Boosts and New Features Node.js 20: Key Performance Boosts and New Features Mar 07, 2025 pm 06:12 PM

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

How does Java's classloading mechanism work, including different classloaders and their delegation models? How does Java's classloading mechanism work, including different classloaders and their delegation models? Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache? How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache? Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

How to Share Data Between Steps in Cucumber How to Share Data Between Steps in Cucumber Mar 07, 2025 pm 05:55 PM

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive

Iceberg: The Future of Data Lake Tables Iceberg: The Future of Data Lake Tables Mar 07, 2025 pm 06:31 PM

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w

How can I implement functional programming techniques in Java? How can I implement functional programming techniques in Java? Mar 11, 2025 pm 05:51 PM

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability

See all articles