Java 8 Streams – Streams in Java With Examples
Java 8 Streams – Streams in Java With Examples What are Streams? Â Sequence of objects supporting multiple methods. Features: Stream is not a data structure and does not store elements.…
Java 8 Streams – Streams in Java With Examples What are Streams? Â Sequence of objects supporting multiple methods. Features: Stream is not a data structure and does not store elements.…
What happens if we do not override hashcode() and equals() in hashmap? In this post, let us understand what is the use of equals() and hashcode(), why it is important…
How does hashmap work Internally – Explained: In this post, let us see how hashmap works internally – How the elements are added and retrieved from buckets. Features of HashMap:…
Strings are Immutable | StringBuilder | StringBuffer: In this post, let us discuss about Strings, why Strings are immutable where as StringBuilder and StringBuffer are mutable. What is Immutability?…
Coupling | Tight Coupling vs Loose Coupling | Examples What is Coupling? When one object is used by another object it is known as Coupling. In general, it is based…