Si vous avez appris C++
, vous devez être familier avec, function object
ou functor
signifie tout objet qui peut be called as if it is a function
.
En C ++, an ordinary function
est un objet fonction, tout comme un pointeur de fonction; plus généralement, il en est de même d'un objet d'une classe qui définit operator()
. En C ++ 11 et supérieur, the lambda expression
c'est functor
aussi le cas.
Similitude, en Python, ce functors
sont tous callable
. An ordinary function
peut être appelable, a lambda expression
peut être appelable, a functional.partial
peut être appelable, les instances de class with a __call__() method
peuvent être appelables.
Ok, revenons à la question: I have a variable, x, and I want to know whether it is pointing to a function or not.
Si vous voulez évaluer la météo, l'objet agit comme une fonction, alors la callable
méthode suggérée par @John Feminella
est correcte.
Si vous le souhaitez judge whether a object is just an ordinary function or not
(pas une instance de classe appelable ou une expression lambda), alors le xtypes.XXX
suggéré par @Ryan
est un meilleur choix.
Ensuite, je fais une expérience en utilisant ces codes:
#!/usr/bin/python3
# 2017.12.10 14:25:01 CST
# 2017.12.10 15:54:19 CST
import functools
import types
import pprint
Définissez une classe et une fonction ordinaire.
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)
Définissez les foncteurs:
#(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
Définissez la liste des foncteurs et la liste des types:
## 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]
Jugez si le foncteur peut être appelé. Comme vous pouvez le voir, ils sont tous appelables.
res = [callable(xfunc) for xfunc in xfuncs]
print("functors callable:")
print(res)
"""
functors callable:
[True, True, True, True, True, True, True, True]
"""
Jugez le type du foncteur (types.XXX). Ensuite, les types de foncteurs ne sont pas tous les mêmes.
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>
"""
Je dessine un tableau des types de foncteurs appelables en utilisant les données.
Ensuite, vous pouvez choisir les types de foncteurs qui conviennent.
tel que:
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