python_bound_method
Python bound method
bound method - “A method that is accessed through an instance becomes bound to that instance. Any method is actually a descriptor. When accessed, a method returns itself wrapped in an object that binds the method to the receiver. That object is the bound method. It can be invoked without passing the value of self. For example, given the assignment my_method = my_obj.method, the bound method can later be called as my_method(). Contrast with unbound method. See receiver (Python receiver).” (FlntPy 2022)
python_bound_method.txt · Last modified: 2024/05/01 04:29 by 127.0.0.1