Java Themes for Beginners

I was trying to explain Java threads to a colleague who has never been exposed to multithreading, but apparently I'm not a very good teacher.

Can anyone recommend a good online or offline resource that can explain flows in a simple, step by step way? I know this is a tricky topic, but surely there is an article, book, or other explanation that can lead to "Aha! I finally got it!" moment.

+2


a source to share


6 answers


Take a look at Concurrency in the Sun Java Tutorials. It's kind of big, but it crashed just fine.



+6


a source


I would point him towards the official tutorial where this issue was discussed here.



It was the official java tutorial that got me started and I'm not even a serious Java developer ...

+2


a source


+1


a source


Here's an old but good one, got me Aha, I get an effect

http://www.javaworld.com/javaworld/jw-04-1996/jw-04-threads.html

0


a source


After some simple lessons, I highly recommend getting Brian Goetz's book "Java Concurrency in Practice" if a colleague can continue multi-threaded programming.

0


a source


If you are using Swing check out SwingWorker as well:

http://java.sun.com/docs/books/tutorial/uiswing/concurrency/worker.html

0


a source







All Articles