[go: nahoru, domu]

Skip to content

In this repository we will see advance java with example. Basically we see JAVA 8 features such us stream-api, lambda-expressions etc...

Notifications You must be signed in to change notification settings

ahsumon85/advance-java-practices

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Advance JAVA Programming

  1. Lambda Expression: Lambda expression is anonymous function which takes in parameters and returns a value

What are main advantage of using java 8?

  • More compact code
  • Less boiler plate code
  • More readable and reusable code
  • More testable code
  • Parallel operations

Lambda Expression:

A lambda expression (lambda) describes a block of code (an anonymous function) that can be passed to constructors or methods for subsequent execution. The constructor or method receives the lambda as an argument. Consider the following example:

(parameter1, parameter2) -> { code block }

lambda-expression

About

In this repository we will see advance java with example. Basically we see JAVA 8 features such us stream-api, lambda-expressions etc...

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages