당신이 배운 경우 C++
, 당신은 function object
또는에 익숙해야, 할 functor
수있는 물건을 의미합니다 be called as if it is a function
.
C ++에서는 an ordinary function
함수 객체이며 함수 포인터도 있습니다. 보다 일반적으로를 정의하는 클래스의 객체도 마찬가지입니다 operator()
. C ++ 11과 큰에서 the lambda expression
는 IS functor
너무합니다.
비슷하게 파이썬에서는 이것들 functors
이 모두 callable
입니다. 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
(호출 가능한 클래스 인스턴스 또는 람다식이 아닌) 원한다면 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]
"""
펑터의 유형 (유형 XXX)을 판단하십시오. 그런 다음 펑터 유형이 모두 동일하지는 않습니다.
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 유형의 테이블을 그립니다.
그런 다음 적절한 펑터 유형을 선택할 수 있습니다.
같은 :
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