DEV Community

ChelseaLiu0822
ChelseaLiu0822

Posted on

[java]Asynchronous and synchronous

The call to the method needs to wait for the result to return before continuing the operation is synchronization
The call of the method is asynchronous without having to wait for the result to return
Multithreading can make the method execution asynchronous, and multi-core CPU can improve efficiency

Top comments (0)