排序
Java generics and the problems it solved.
Java generics and the problems it solved.,Prior to java 1.5, there was no way to specify types for objects when we need to use them in collections. Java is supposed to be a typed l...
Having fun with dataclasses and abstract base classes
Having fun with dataclasses and abstract base classes, On dataclasses (2 Part Series) 1 Having fun with dataclasses and abstract base classes 2 Deeper into dataclasses Python is we...
Optional to stream in java 9
Optional to stream in java 9,Last year Java 9 launched with tons of new features. In this blog post, I’m going to explain streams in Optional (introduced in Java8). Now you can ge...
Immutable Data Structures
Immutable Data Structures,Functional programming is currently on the rise due to its ability to prevent a lot of errors right out of the gate. The two corner stones of the function...
Kotlin Collections and how it compares with Java Collections API
Kotlin Collections and how it compares with Java Collections API,We developers usually write software that uses collections on a daily basis, code that deals with things such as fe...
How HashMap works internally in java : A debug approach
How HashMap works internally in java : A debug approach,Most common interview questions are 'How HashMap works in java', 'How get and put method of HashMap work internally'. Here...