Java Development
-
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 » -
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 » -
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 » -
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 » -
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 » -
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 » -
Safe collection iteration example
In this example we shall show you how to obtain a safe Collection iteration. We are using the List implementation…
Read More » -
Vector copy example
With this example we are going to demonstrate how to get a copy of a Vector. We are using the synchronized…
Read More » -
List copy example
This is an example of how to make a safe List copy. Making a safe List copy implies that you…
Read More » -
PriorityQueue example
In this example we shall show you how to use a PriorityQueue. To use a PriorityQueue one should perform the following…
Read More »