The problem to solve is how to blend the various programming styles (functional programming in this case) available in Java 8 to meet an application's need. Disclaimer : All the paragraphs/codes are direct copy from the book . This note captures the key points in the book I found particularly useful to myself. Thank the author for creating such a good book on the functional programming in Java. Functional Programming Concept First-class and high-order functions are associated with functional programming. A first-class function is a computer science term. It refers to functions that can be used anywhere a first-class entity can be used. A first-class entity includes elements such as numbers and strings. They can be used as an argument to a function, returned from a function, or assigned to a variable. High-order functions depend upon the existence of first-class functions. They are functions that either: Take a function as an argument Return a function Java 8 ha...
Share coding experience