官术网_书友最值得收藏!

Lambda expressions and functional interfaces

Lambda expressions are essential in functional programming. Lambda expressions are constructs that exist in a standalone fashion and not as a part of any class. One particular scenario where Lambda expressions can be used is while creating classes which consist of just a single method. Lambda expressions, in this case, help to be an alternative to anonymous classes (classes without names), which might not be feasible in certain situations. We will briefly look at two examples, side by side, of how we can convert a conventional Java snippet into a Lambda expression.

In the following code, we will assign a method to a variable called blockofCodeA. This is just what we are intending to solve with the means of Lambda expressions:

blockofCodeA = public void demo(){ System.out.println("Hello World");
}

The same piece of code can be written using Lambda expressions, as shown here:

blockofCodeA = () -> {                                 
System.out.println("Hello World");
}

Remove the name, return type, and the modifier, and simply add the arrow after the brackets. This becomes your Lambda expression.

主站蜘蛛池模板: 雅安市| 明星| 南汇区| 车险| 伊川县| 迭部县| 德化县| 仁寿县| 万盛区| 买车| 左云县| 宜兴市| 友谊县| 黑河市| 罗源县| 高碑店市| 卢湾区| 扬中市| 游戏| 红原县| 渝中区| 汝阳县| 大田县| 二连浩特市| 福建省| 海门市| 叶城县| 钦州市| 赣榆县| 雅江县| 仁布县| 鄄城县| 新疆| 东至县| 介休市| 晋宁县| 凤山市| 许昌市| 青神县| 旬邑县| 乳源|