Sunday, April 22, 2012

Translation of Lambda Expressions by Brian Goetz


In the following link Brian Goetz explain how the translation of lambdas can occur in Java.


The article tells us the following import topics:
  • How the lambda translation will manage the instance and not instance lambdas.
  • How the lambda translation will manage the Instance method reference and the not instance method reference. 
  • How is the visibility of the bridge methods implemented.
  • How can the lambda be desugarated.
Read the article and place a comment about what do you think.


No comments:

Post a Comment

Read files in Java 10 ways How to Read a File in Java Using BufferedReader and FileReader for Text Files Code Example: try (BufferedR...