


How 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
- 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.
- 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.
- 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.
- 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.
- 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.
- 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!

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

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

Java is a popular programming language that can be learned by both beginners and experienced developers. This tutorial starts with basic concepts and progresses through advanced topics. After installing the Java Development Kit, you can practice programming by creating a simple "Hello, World!" program. After you understand the code, use the command prompt to compile and run the program, and "Hello, World!" will be output on the console. Learning Java starts your programming journey, and as your mastery deepens, you can create more complex applications.
