• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Java Lambda Expression vs Jython Lambda function

 
Ranch Hand
Posts: 273
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have worked on Lambda functions in Jython. It's a very cryptic code that achieves something which requires lengthier code.
When I had a first look at Java 8 Lambda expression, it is also very similar to Jython's lambda function.
I need to deep dive, I am at surface level.
But, is my understanding correct?
 
Sheriff
Posts: 17644
300
Mac Android IntelliJ IDE Eclipse IDE Spring Debian Java Ubuntu Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Gurumurthy Ramamurthy wrote:But, is my understanding correct?

Not sure what you're asking. Understanding of what? That lambda expressions can be cryptic? Sure, they can be cryptic, especially if you're unfamiliar with them. Context is important in understanding what a lambda expression is doing so try to keep lambdas in surrounding code that gives proper context.
 
reply
    Bookmark Topic Watch Topic
  • New Topic