core java
-
threads
CyclicBarrier example
This is an example of how to use a CyclicBarrier. A CyclicBarrier is a synchronization aid that allows a set…
Read More » -
threads
CountDownLatch example
In this example we shall show you how to use a CountDownLatch. The CountDownLatch is a synchronization aid that allows one…
Read More » -
threads
Multiple access example
With this example we are going to demonstrate how to have multiple access over an object. The example describes the…
Read More » -
threads
Return a value from a thread
This is an example of how to return the value of a Thread. The steps of the example are described in…
Read More » -
threads
Worker coordination using WorkQueue
In this example we shall show you how to achieve a coordination between two threads that try to get the…
Read More » -
threads
ThreadLocal example
With this example we are going to demonstrate how to create a ThreadLocal. The ThreadLocal class provides thread-local variables. These variables differ…
Read More » -
threads
Thread communication using Queue example
This is an example of how to achieve a queue communication between two Threads. The example is described in short: We…
Read More » -
threads
Find rhyming words using QuickSort
In this example we shall show you how to find rhyming words using the QuickSort algorithm. We have created two classes,…
Read More » -
threads
Thread performance on Atomic type
With this example we are going to demonstrate how to check a thread performance on atomic type. We are testing…
Read More » -
threads
Synchronized/Unsynchronized collection performance test
This is an example of how to test the performance of synchronized and unsynchronized Collection. The test is described below:…
Read More »