Behavior Parameterization with Java Lambda

1. Intro Behavior parameterization is a technique to change the behavior of a function on demand. You may use it to implement the strategy design pattern. Strategy Design Pattern enables flexibility and control at the caller level by allowing selection of algorithm at the time of code execution. You will see the effectiveness of this …

Behavior Parameterization with Java Lambda Read More »