05 August 2010

Python bound and unbound method

The key difference between unbound and bound methods is that an unbound method is not associated with a particular instance while a bound method is. AND, delegating to a superclass implementation is the MOST FREQUENT use of unbound methods!

One common use of delegation occurs with special method __init__ in python.

No comments: