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

Lambda functions - functional programming

One more thing that's kind of a Python-ish sort of a thing to do, which you might not see in other languages is the concept of lambda functions, and it's kind of called functional programming. The idea is that you can include a simple function into a function. This makes the most sense with an example:

#Lambda functions let you inline simple functions
print (DoSomething(lambda x: x * x * x, 3))

The output of the above code is as follows:

27

We'll print DoSomething, and remember that our first parameter is a function, so instead of passing in a named function, I can declare this function inline using the lambda keyword. Lambda basically means that I'm defining an unnamed function that just exists for now. It's transitory, and it takes a parameter x. In the syntax here, lambda means I'm defining an inline function of some sort, followed by its parameter list. It has a single parameter, x, and the colon, followed by what that function actually does. I'll take the x parameter and multiply it by itself three times to basically get the cube of a parameter.

In this example, DoSomething will pass in this lambda function as the first parameter, which computes the cube of x and the 3 parameter. So what's this really doing under the hood? This lambda function is a function of itself that gets passed into the f in DoSomething in the previous example, and x here is going to be 3. This will return f of x, which will end up executing our lambda function on the value 3. So that 3 goes into our x parameter, and our lambda function transforms that into 3 times 3 times 3, which is, of course, 27.

Now this comes up a lot when we start doing MapReduce and Spark and things like that. So if we'll be dealing with Hadoop sorts of technologies later on, this is a very important concept to understand. Again, I encourage you to take a moment to let that sink in and understand what's going on there if you need to.

主站蜘蛛池模板: 安国市| 十堰市| 汉川市| 金昌市| 新蔡县| 辰溪县| 肥西县| 长子县| 揭西县| 西吉县| 石狮市| 梁平县| 巴彦淖尔市| 五常市| 阜新| 永济市| 新沂市| 连山| 隆化县| 益阳市| 芦溪县| 开远市| 揭阳市| 准格尔旗| 灵山县| 班玛县| 左贡县| 乌拉特前旗| 阿坝| 临澧县| 于田县| 桦川县| 奉新县| 蕲春县| 安顺市| 栾川县| 蛟河市| 八宿县| 邢台县| 巴彦淖尔市| 盘锦市|