Javatpoint Logo
Javatpoint Logo

Arrow Operator Java

With the release of Java 8, a new feature known as the arrow operator was added to the language. The "->" operator or the lambda operator are other names for it. Developers can define and use lambda expressions, a new Java feature for defining anonymous functions, thanks to this operator.

Developers can now write code that is both shorter and more expressive thanks to the Java programming language's inclusion of lambda expressions. In place of anonymous inner classes, which were formerly used to implement interfaces with a solitary abstract method, they can be used.

The syntax for a lambda expression is as follows:

The parameter list and the body of the lambda expression are separated using the arrow operator. Parentheses are used to surround the parameters, while curly braces are used to encapsulate the expression's body.

The arrow operator is used to show that the lambda expression's parameters are being passed to the expression's body. It is also employed to denote the expression's return type. If an expression's body only contains one expression, the return type can be deduced from that expression. The return type must be specifically stated if the expression's body contains multiple expressions.

Here is an example of a lambda expression that takes two integer parameters and returns their sum:

The lambda expression can be used in the following way:

The lambda expression in this illustration is applied to an IntBinaryOperator type variable. The lambda expression is then applied to two integer values using the applyAsInt() method of the IntBinaryOperator interface, yielding a sum of 30.

The arrow operator can also be used to define lambda expressions that take no parameters:

In Java, there are several circumstances where lambda expressions can be used, such as functional interfaces, streams, and parallel processing. They permit programmers to create shorter, more expressive lines of code, which can improve readability and maintainability.

An illustration of Java code that employs the arrow operator to define and apply a lambda expression to a list of integers is shown below:

ArrowOperatorExample.java

Output:

Original list: [1, 2, 3, 4, 5]
Even numbers: [2, 4]

In this code, a list of integers called numbers is first created, and then certain values are added to it. Then, we define a lambda expression with the arrow operator to limit the list to only include even numbers.

One parameter, n, is required for the lambda expression (n -> n% 2 == 0), which returns a boolean value indicating whether n is even or not. The filter() function of the Stream interface receives this expression and generates a new stream that only contains even numbers.

The even numbers are then collected into a new list called evenNumbers using the collect() method, and this list is then printed to the console.

This is just a straightforward example of how the Java arrow operator could be used. Although its true power lies in functional programming paradigms that allow for the definition and use of more complex lambda expressions, this example should give you a good idea of how it operates.

The arrow operator in Java is a potent new feature that enables programmers to create and use lambda expressions, so let's sum it up. It gives Java developers a clear and expressive vocabulary for defining anonymous functions, which can improve readability and maintainability. Developers can design Java code that is more effective and expressive by utilising lambda expressions.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA