Local Variable Type Inference – var (Java 10)

For Java 11 Certification Exam Practice Questions, refer http://talks.skilltoz.com/java-11-certification-exam-questions/ The var reserved type introduced in Java 10 makes it possible…

add comment

Using the Diamond Operator : Java 7.0

Overview The diamond operator (<>) introduced in Java 7.0 can be used to reduce the verbosity associated with instantiation of…

add comment

Immutable Collections in Java

Overview Immutable collections are collections that cannot be modified ie;  they do not support any modification operations (such as add,…

add comment