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

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.

主站蜘蛛池模板: 京山县| 罗甸县| 汶上县| 河池市| 扬中市| 沂水县| 新源县| 鲁山县| 乌审旗| 昌黎县| 安化县| 丰宁| 亳州市| 泸州市| 含山县| 石泉县| 长宁区| 四会市| 房产| 图们市| 华亭县| 正镶白旗| 东源县| 蕉岭县| 威宁| 昔阳县| 景德镇市| 辰溪县| 上蔡县| 郁南县| 新乡市| 凤台县| 西丰县| 巴彦淖尔市| 武川县| 镇坪县| 安顺市| 阿坝县| 濮阳市| 永修县| 赞皇县|