Core Java

Sort objects on multiple fields /properties – Comparator interface (lambda stream java 8)

Given a the list of objects, we need to sort the objects by their multiple properties. We have used java 8 streams to sort the objects. In below example, we have take the Person object. We will sort the list of person objects by their firstName. Also we have shown the cascaded sorting wherein we have sorted the list on multiple fields.We have performed the following operations.

Create fixed thread pool in java using Executors (example)

Thread Pool : Thread pool is collection of threads which are created to complete certain tasks.
The interaction between thread pool and task is as follows
1.) Thread Pool is created
2.) Task are created.
3.) Task assigned to Thread in thread pool.

What is thread in java with example (Real world analogy) ?

Everybody in this world is performing one duty or the other.The duties we are performs is like the functional activity of bigger execution block. Let us shrink our vision and take one house to understand. In traditional family environment husband involves in earning to maintain day to day expenses and wife involves in house hold activitie

What is client server architecture with example (real world analogy) ?

The person or device that is capable of serving is called the Server. In our day to day life we come across various servers. We generally purchase vegetable or fruits from a vendor (Shopkeeper / hawker). We request the shopkeeper for required vegetables/fruits. The shop keeper provides us the required vegetable or fruits. We ask the shopkeeper and he provides us the food items. So, Shopkeeper is at our service, which fulfills our need.

Scroll to Top