1. 程式人生 > >高階函數

高階函數

class function body turn urn index color value cell

變量可以指向函數,函數的參數能接收變量,那麽一個函數就可以接收另一個函數作為參數,這種函數就稱之為高階函數。

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)

高階函數