0
Explain threads in Java
What are threads in Java, how important it is to use threads in programs and what are things to learn on this topic.
1 Resposta
+ 10
Oracle provides a quite good tutorial about threads:
https://docs.oracle.com/javase/tutorial/essential/concurrency/index.html
Additional to this you should take a look at some common problems for multi-threading like deadlock, updating shared objects, gui interaction...