码迷,mamicode.com
首页 > 其他好文 > 详细

高阶函数

时间:2017-06-23 11:43:46      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:order   cells   syntax   word   一个   res   pad   nbsp   ble   

变量可以指向函数,函数的参数能接收变量,那么一个函数就可以接收另一个函数作为参数,这种函数就称之为高阶函数。

1
2
3
4
5
6
def add(x,y,f):
    return f(x) + f(y)
 
 
res = add(3,-6,abs)
print(res)

 

1 def add(a,b):
2     print(a+b)
3 
4 def func(x,y,f):
5     return f(x,y)
6 
7 func(2,9,add)

 

高阶函数

标签:order   cells   syntax   word   一个   res   pad   nbsp   ble   

原文地址:http://www.cnblogs.com/zoe233/p/7068954.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!