Master Oogways enlighten us about Optional in his previous two sessions, and Now he set the stage for the final advise on Optional and believe me that is the most searchable questions on the internet about Optional, also many peoples mailed in OpenJDK...
Home » Posts filed under java8feature
Java8: Oogways final advise on Optional
in
java interview questions,
java8,
java8feature,
optional
- on December 26, 2017
- No comments
Java8:Effective use of Consumer Functional Interface
in
java interview questions,
java8,
java8feature
- on November 20, 2017
- No comments

Java8 provides a functional interface called Consumer, Whose signature looks like following
@FunctionalInterface
public interface Consumer<T> {
void accept(T t);
default Consumer<T> andThen(Consumer<?...