docs(java): remove nb! in threads (#6599)

pull/6659/head
J. Degand 3 months ago committed by GitHub
parent 7b9b783472
commit 7f7851e8e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/data/roadmaps/java/content/101-java-advanced-topics/108-basics-of-threads.md

@ -2,7 +2,7 @@
A thread in Java is the direction or path that is taken while a program is being executed. Generally, all the programs have at least one thread, known as the main thread, that is provided by the JVM or Java Virtual Machine at the starting of the program’s execution. A thread in Java is the direction or path that is taken while a program is being executed. Generally, all the programs have at least one thread, known as the main thread, that is provided by the JVM or Java Virtual Machine at the starting of the program’s execution.
NB! Writing correct multi-threaded application is complex and it's an advanced topic. Things like ParallelStreams, thread-safe Collections and ExecutorService can be helpful. Writing correct multi-threaded application is complex and it's an advanced topic. Things like ParallelStreams, thread-safe Collections and ExecutorService can be helpful.
Visit the following resources to learn more: Visit the following resources to learn more:

Loading…
Cancel
Save