search
HomeJavajavaTutorialHow to use CompletableFuture for asynchronous programming and concurrency control in Java 9

How to use CompletableFuture to implement asynchronous programming and concurrency control in Java 9

Introduction:
With the increasing demand for high performance and high concurrency in modern applications, asynchronous programming and concurrency control have become Common problems in development. The CompletableFuture class introduced in Java 9 provides a powerful mechanism to handle asynchronous operations and provides a simple and elegant way to implement concurrency control. This article will introduce the basic concepts of CompletableFuture in Java 9 and provide some sample code to demonstrate how to use CompletableFuture to implement asynchronous programming and concurrency control.

1. Introduction to CompletableFuture

CompletableFuture is a supplement to the asynchronous programming mechanism introduced in Java 8. It is a class that implements the Future and CompletionStage interfaces. The Future interface is used to represent the result of an asynchronous task that may not be completed, while the CompletionStage interface is used to express a calculation that may be performed asynchronously (including triggering operations and returning results), as well as subsequent operations that may be triggered after the calculation is completed. The CompletableFuture class provides a simplified way to use these interfaces and provides more powerful capabilities for handling asynchronous operations.

2. Basic usage examples

  1. Creating a CompletableFuture object

First, we need to create a CompletableFuture object to represent the result of asynchronous calculation. The CompletableFuture class provides a variety of static methods to create such objects, such as completedFuture, supplyAsync, etc. The following is a sample code:

CompletableFuture<String> future = CompletableFuture.completedFuture("Hello, CompletableFuture!");

In the above code, we use the completedFuture method to create a completed CompletableFuture object and pass it a string as the calculation result.

  1. Trigger asynchronous calculation

Next, we need to trigger an asynchronous calculation and associate it with the CompletableFuture object created in the previous step. The CompletableFuture class provides two methods to achieve this, namely runAsync and supplyAsync. The former is used to perform an asynchronous operation that does not return a result, while the latter is used to perform an asynchronous operation that returns a result. The following is a sample code:

CompletableFuture<Integer> future = CompletableFuture.supplyAsync(() -> {
    // 异步计算,返回一个整数结果
    return 42;
});

In the above code, we use the supplyAsync method to create an asynchronously executed calculation that will return an integer result.

  1. Processing asynchronous calculation results

Once the asynchronous calculation is completed, we can process the calculated results by calling the method of the CompletableFuture object. The CompletableFuture class provides a variety of methods to process results, such as thenApply, thenAccept, etc. The following is a sample code:

CompletableFuture<Integer> future = CompletableFuture.supplyAsync(() -> {
    // 异步计算,返回一个整数结果
    return 42;
});
future.thenApply(result -> {
    // 处理结果并返回一个新的结果
    return result * 2;
})
.thenAccept(result -> {
    // 处理最终结果
    System.out.println("Final result: " + result);
});

In the above code, we call the thenApply method to process the result after the asynchronous calculation is completed, and return a new result. Then, we called the thenAccept method to process the final result and print it out.

3. Concurrency control example

In addition to asynchronous programming, CompletableFuture also provides some methods to implement concurrency control. The most commonly used methods include: anyOf, allOf and join.

  1. anyOf method

The anyOf method is used to wait for any one of multiple CompletableFutures to complete. It will return a new CompletableFuture object that evaluates to the result of the first completed CompletableFuture object. The following is a sample code:

CompletableFuture<Integer> future1 = CompletableFuture.supplyAsync(() -> {
    // 异步计算1
    return 1;
});
CompletableFuture<Integer> future2 = CompletableFuture.supplyAsync(() -> {
    // 异步计算2
    return 2;
});
CompletableFuture<Object> resultFuture = CompletableFuture.anyOf(future1, future2);
resultFuture.thenAccept(result -> {
    System.out.println("First result: " + result);
});

In the above code, we use the anyOf method to wait for either future1 or future2 to be calculated and print out the result.

  1. allOf method

The allOf method is used to wait for all calculations in multiple CompletableFutures to be completed. It will return a new CompletableFuture object, which evaluates to a Void value (null). Here is a sample code:

CompletableFuture<Integer> future1 = CompletableFuture.supplyAsync(() -> {
    // 异步计算1
    return 1;
});
CompletableFuture<Integer> future2 = CompletableFuture.supplyAsync(() -> {
    // 异步计算2
    return 2;
});
CompletableFuture<Void> resultFuture = CompletableFuture.allOf(future1, future2);
resultFuture.thenRun(() -> {
    System.out.println("All calculations are completed.");
});

In the above code, we use the allOf method to wait for all calculations in future1 and future2 to complete and print out a completion message.

  1. join method

The join method is used to wait for the calculation result of a CompletableFuture and return the result. If an exception occurs during calculation, an exception will be thrown. The following is a sample code:

CompletableFuture<Integer> future = CompletableFuture.supplyAsync(() -> {
    // 异步计算,返回一个整数结果
    return 42;
});
int result = future.join();
System.out.println("Result: " + result);

In the above code, we use the join method to wait for the calculation of the future to be completed and obtain its result.

Summary:

This article introduces the basic concepts of CompletableFuture in Java 9 and gives some sample code to demonstrate how to use CompletableFuture to implement asynchronous programming and concurrency control. By using CompletableFuture, we can handle asynchronous operations in a simple and elegant way and achieve flexible control of concurrent calculations. I hope these examples will help you understand and use CompletableFuture.

The above is the detailed content of How to use CompletableFuture for asynchronous programming and concurrency control in Java 9. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?Apr 19, 2025 pm 11:45 PM

Start Spring using IntelliJIDEAUltimate version...

How to elegantly obtain entity class variable names to build database query conditions?How to elegantly obtain entity class variable names to build database query conditions?Apr 19, 2025 pm 11:42 PM

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

How to use the Redis cache solution to efficiently realize the requirements of product ranking list?How to use the Redis cache solution to efficiently realize the requirements of product ranking list?Apr 19, 2025 pm 11:36 PM

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...

How to safely convert Java objects to arrays?How to safely convert Java objects to arrays?Apr 19, 2025 pm 11:33 PM

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

How do I convert names to numbers to implement sorting and maintain consistency in groups?How do I convert names to numbers to implement sorting and maintain consistency in groups?Apr 19, 2025 pm 11:30 PM

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?Apr 19, 2025 pm 11:27 PM

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to set the default run configuration list of SpringBoot projects in Idea for team members to share?How to set the default run configuration list of SpringBoot projects in Idea for team members to share?Apr 19, 2025 pm 11:24 PM

How to set the SpringBoot project default run configuration list in Idea using IntelliJ...

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

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