Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Java Multithreading
Rating: 4.7 out of 5(14,042 ratings)
293,012 students

Java Multithreading

Unveiling the mysteries of multithreading in Java. The ultimate Java multithreading course
Created byJohn Purcell
Last updated 11/2012
English

What you'll learn

  • Understand Java multi-threading
  • Be able to write effective muli-threaded code

Course content

2 sections16 lectures2h 58m total length
  • Starting Threads9:58

    In this tutorial we'll look at the two main ways to start a thread in Java. If you want to start lots of threads all at once you'll want to use thread pools, which we'll look at in a future tutorial; the methods in this tutorial are most suitable for starting one or a small number of threads. In case you're going for a job interview or taking an exam, this is a classic interview/exam question!

  • Basic Thread Synchronization9:49

    This video looks at basic thread communication in Java using boolean flags with the volatile keyword. I also take a look at why volatile isn't good enough for most situations.

  • The Synchronized Keyword13:15

    The basics of using the synchronized keyword in Java to stop threads messing up each other's work. What's an intrinsic lock, and why do we need it? 

  • Multiple Locks; Using Synchronized Code Blocks18:15

    How to speed up your multithreaded code by locking only those sections of code that you need to, rather than using synchronized methods and locking your whole object. Don't forget to maximize to fullscreen so you can see the code. You can also find the code on caveofprogramming.com.

  • Thread Pools9:11

    How to use thread pools to manage lots of threads to complete lots of similar tasks. Source code available on caveofprogramming.com

  • Countdown Latches8:06

    How to use the fantastic CountDownLatch class in Java to simplify your multithreaded code.


  • Producer-Consumer11:10

    A tutorial on how to implement the producer-consumer pattern in Java using the ArrayBlockingQueue Java class. Producer-Consumer is the situation where one or more threads are producing data items and adding them to a shared data store of some kind while one or more other threads process those items, removing them from the data store.

  • Wait and Notify10:21

    A tutorial on wait and notify; low-level thread synchronization methods in Java that allow you to avoid having vile process-consuming polling loops in your code. Code on caveofprogramming.com. Wait and notify allow you to have sleeping threads that are woken up by other threads. "Why, exactly what I've been looking for!" I hear you say. Yes, even people who don't program in Java can enjoy using these fantastic methods. OK, maybe that's going a bit far.


  • A Worked Example Using Low-Level Synchronization10:10

    A tutorial on how to implement the producer-consumer pattern in Java using the "low level" keywords wait, notify and synchronize. (See tutorial 7 for the high level version). Code on www.caveofprogramming.com

  • Re-entrant Locks11:30

    How to use the ReentrantLock class in Java as an alternative to synchronized code blocks. ReentrantLocks let you do all the stuff that you can do with synchronized, wait and notify, plus some more stuff besides that may come in handy from time to time.

  • Deadlock14:39

    The causes of deadlock and two things you can do about it. This video also covers how to write a method that can safely acquire any number of locks in any order without causing deadlock, using the tryLock() method of ReentrantLock.

  • Semaphores10:55
    How to use Semaphores in multi-threaded Java code. Semaphores allow you to control how many threads can access a resource simultaneously; you can also use them as locks if the mood takes you, with the advantage that you can release (unlock) them from threads other than where you locked them.
  • Callable and Future11:32
  • Interrupting Threads8:40
    Finally it's time to figure out what those pesky InterruptedExceptions are for.
  • Multithreading in Swing with SwingWorker20:11
    Multithreading in Swing (GUI) programs presents a few unique difficulties, since you can't (or at least you're not supposed to) update the GUI from another thread. The SwingWorker class can help you out a lot.

Requirements

  • Some knowledge of Java

Description

Discover how to write effective multi-threaded code in Java; learn why problems can occur with Java multithreading and how to fix those problems.

Who this course is for:

  • Java developers
  • Java beginners who don't mind a steep learning curve