Skip to content

Latest commit

 

History

History

ch12_lambda

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

12. Lambda expressions

  • since Java 8
  • is a function which can be created without belonging to any class
  • write as lambda expression is possible only abstract class or interface with exactly one abstract method
  • special variant of lambda expression is method reference (reference method with :: operator)

Note: More information about Lambdas and Streams is written in OCP part.