function和bound method的區別
Method被呼叫時,self會自動加到函式列表首位;
Method就是封裝了一個func和一個class object;
Function的__get__可以把自己和一個class object封裝到一個bounded method裡面去;
Python’s object oriented features are built upon a function based environment. Using non-data descriptors, the two are merged seamlessly.
Functions stored in class dictionaries get turned into methods when invoked. Methods only differ from regular functions in that the object instance is prepended to the other arguments. By convention, the instance is called self but could be called this or any other variable name.
Methods can be created manually with types.MethodType
which is roughly equivalent to:
class MethodType: "Emulate Py_MethodType in Objects/classobject.c" def __init__(self, func, obj): self.__func__ = func self.__self__ = obj def __call__(self, *args, **kwargs): func = self.__func__ obj = self.__self__ return func(obj, *args, **kwargs)
To support automatic creation of methods, functions include the __get__()
method for binding methods during attribute access. This means that functions are non-data descriptors that return bound methods during dotted lookup from an instance. Here’s how it works:
class Function: ... def __get__(self, obj, objtype=None): "Simulate func_descr_get() in Objects/funcobject.c" if obj is None: return self return MethodType(self, obj)
Running the following class in the interpreter shows how the function descriptor works in practice:
class D: def f(self, x): return x
The function has a qualified name attribute to support introspection:
>>>
>>> D.f.__qualname__ 'D.f'
Accessing the function through the class dictionary does not invoke __get__()
. Instead, it just returns the underlying function object:
>>>
>>> D.__dict__['f'] <function D.f at 0x00C45070>
Dotted access from a class calls __get__()
which just returns the underlying function unchanged:
>>>
>>> D.f <function D.f at 0x00C45070>
The interesting behavior occurs during dotted access from an instance. The dotted lookup calls __get__()
which returns a bound method object:
>>>
>>> d = D() >>> d.f <bound method D.f of <__main__.D object at 0x00B18C90>>
Internally, the bound method stores the underlying function and the bound instance:
>>>
>>> d.f.__func__ <function D.f at 0x1012e5ae8> >>> d.f.__self__ <__main__.D object at 0x1012e1f98>
If you have ever wondered where self comes from in regular methods or where cls comes from in class methods, this is it!
相關文章
- vue中computed/method/watch的區別Vue
- Function 與 Classes 元件的區別在哪?Function元件
- rust-quiz:018-method-or-function-pointer.rsRustUIFunction
- [譯] React 是如何區分 Class 和 Function 的 ?ReactFunction
- Python-unsupported operand type(s) for %: 'builtin_function_or_method' and 'int'PythonUIFunction
- ../和./和/的區別
- LinkedList和ArrayList的區別、Vector和ArrayList的區別
- http和https的區別/get和post的區別HTTP
- (譯)React是如何區分Class和Function?ReactFunction
- Function型別Function型別
- ||和??的區別
- /*和/**的區別
- jquery $(this) 和this的區別jQuery
- JQuery this和$(this)的區別jQuery
- T和?的區別
- makefile =和:=的區別
- ++a和a++的區別
- ./ 和sh 的區別
- [vue] computed 和 methodVue
- 和區別
- springmvc和springboot的區別SpringMVCSpring Boot
- SDK和API的區別?API
- ArrayList和LinkedList的區別?
- button和submit的區別MIT
- MTV和MVC的區別MVC
- hadoop和spark的區別HadoopSpark
- rpop 和 brpop的區別
- WebApi和MVC的區別WebAPIMVC
- GET和POST的區別?
- ArrayList和LinkedList的區別
- WBS和TASK的區別?
- JavaScript中for in 和for of的區別JavaScript
- innerText 和 textContent 的區別?
- var 和 let 的區別
- @JsonProperty和@JsonAlias的區別JSON
- POST 和 GET 的區別
- sass和less的區別
- MySQL和Oracle的區別MySqlOracle