ถ้าคุณได้เรียนรู้C++
คุณจะต้องคุ้นเคยกับfunction object
หรือfunctor
หมายความว่าวัตถุใด ๆ be called as if it is a function
ที่สามารถ
ใน C ++ an ordinary function
เป็นวัตถุฟังก์ชันและเป็นตัวชี้ฟังก์ชัน operator()
มากกว่าปกติเพื่อให้เป็นวัตถุของคลาสที่กำหนดหนึ่ง ใน C ++ 11 และมากกว่านั้นthe lambda expression
ก็functor
เช่นกัน
ความคล้ายคลึงกันในหลามผู้ที่มีทั้งหมดfunctors
สามารถ callable, callable, a สามารถ callable, อินสแตนซ์ของcallablecallable
An ordinary function
a lambda expression
functional.partial
class with a __call__() method
ตกลงกลับไปที่คำถาม: I have a variable, x, and I want to know whether it is pointing to a function or not.
หากคุณต้องการตัดสินสภาพอากาศวัตถุทำหน้าที่เหมือนฟังก์ชั่นcallable
วิธีการที่แนะนำโดย@John Feminella
ก็โอเค
ถ้าคุณต้องการjudge whether a object is just an ordinary function or not
(ไม่ใช่อินสแตนซ์ของคลาส callable หรือนิพจน์แลมบ์ดา) สิ่งที่xtypes.XXX
แนะนำโดย@Ryan
เป็นทางเลือกที่ดีกว่า
จากนั้นฉันทำการทดสอบโดยใช้รหัสเหล่านี้:
#!/usr/bin/python3
# 2017.12.10 14:25:01 CST
# 2017.12.10 15:54:19 CST
import functools
import types
import pprint
กำหนดคลาสและฟังก์ชันทั่วไป
class A():
def __call__(self, a,b):
print(a,b)
def func1(self, a, b):
print("[classfunction]:", a, b)
@classmethod
def func2(cls, a,b):
print("[classmethod]:", a, b)
@staticmethod
def func3(a,b):
print("[staticmethod]:", a, b)
def func(a,b):
print("[function]", a,b)
กำหนดฟังก์ชั่น:
#(1.1) built-in function
builtins_func = open
#(1.2) ordinary function
ordinary_func = func
#(1.3) lambda expression
lambda_func = lambda a : func(a,4)
#(1.4) functools.partial
partial_func = functools.partial(func, b=4)
#(2.1) callable class instance
class_callable_instance = A()
#(2.2) ordinary class function
class_ordinary_func = A.func1
#(2.3) bound class method
class_bound_method = A.func2
#(2.4) static class method
class_static_func = A.func3
กำหนดรายการฟังก์ชั่นและรายการประเภท:
## list of functors
xfuncs = [builtins_func, ordinary_func, lambda_func, partial_func, class_callable_instance, class_ordinary_func, class_bound_method, class_static_func]
## list of type
xtypes = [types.BuiltinFunctionType, types.FunctionType, types.MethodType, types.LambdaType, functools.partial]
ผู้พิพากษาก็สามารถเรียกนักแสดงได้ อย่างที่คุณเห็นพวกเขาทุกคนสามารถโทรได้
res = [callable(xfunc) for xfunc in xfuncs]
print("functors callable:")
print(res)
"""
functors callable:
[True, True, True, True, True, True, True, True]
"""
ตัดสินประเภทของ functor (ประเภท XXX) จากนั้นประเภทของ functors จะไม่เหมือนกันทั้งหมด
res = [[isinstance(xfunc, xtype) for xtype in xtypes] for xfunc in xfuncs]
## output the result
print("functors' types")
for (row, xfunc) in zip(res, xfuncs):
print(row, xfunc)
"""
functors' types
[True, False, False, False, False] <built-in function open>
[False, True, False, True, False] <function func at 0x7f1b5203e048>
[False, True, False, True, False] <function <lambda> at 0x7f1b5081fd08>
[False, False, False, False, True] functools.partial(<function func at 0x7f1b5203e048>, b=4)
[False, False, False, False, False] <__main__.A object at 0x7f1b50870cc0>
[False, True, False, True, False] <function A.func1 at 0x7f1b5081fb70>
[False, False, True, False, False] <bound method A.func2 of <class '__main__.A'>>
[False, True, False, True, False] <function A.func3 at 0x7f1b5081fc80>
"""
ฉันวาดตารางประเภท functor callable โดยใช้ข้อมูล
จากนั้นคุณสามารถเลือกประเภทของฟังก์ชั่นที่เหมาะสม
เช่น:
def func(a,b):
print("[function]", a,b)
>>> callable(func)
True
>>> isinstance(func, types.FunctionType)
True
>>> isinstance(func, (types.BuiltinFunctionType, types.FunctionType, functools.partial))
True
>>>
>>> isinstance(func, (types.MethodType, functools.partial))
False