Java
8 ways to convert long to String in Java [Practical Examples]
The list below shows eight different ways in which we can convert long to string in Java. Using + operator, String.valueOf(), Long.toString(), DecimalFormat …
6 ways to implement Hashing in Java [Practical Examples]
In this tutorial we cover following 6 different methods to implement hashing in java. Using Hashtable Class, HashMap Class, LinkedHashMap Class, …
7 Robust Methods to Convert Long to Integer in Java
Explore the insightful guide on how to convert long to integer in Java. Discover various methods, each detailed with thoughtful techniques and considerations, …
Currying Function in Java Explained [Practical Examples]
In Java, currying function is the mechanism of breaking down a multi-argument function to form the multiple functions with single arguments such that the output …
How to get sublist from a list in Java [Practical Examples]
In order to get sublist either in an ArrayList or LinkedList, we have to use the sublist() method which is a method of AbstractList class.
