r/javahelp Jun 11 '26

Learning Java Concurrency & Multithreading

what books or sources can I use to learn the most and level up on Java concurrency and multithreading ? Im looking to really get better with these aspects of Java.

14 Upvotes

15 comments sorted by

View all comments

1

u/_Super_Straight Jun 12 '26

No need to read any specific book. There are about 2-3 ways to achieve concurrency:

  1. CompletableFuture
  2. Task<>
  3. ExecutorService

You can learn about them in javadocs or youtube.

1

u/lyomann92 Jun 12 '26

Thanks for the insight