问题
class First(object):
def __init__(self):
print "first"
class Second(First):
def __init__(self):
print "second"
class Third(First, Second):
def __init__(self):
print "third"
Source
Why can't Python create a consistent MRO? It seems to me it's pretty clear:
- Search in First if method does not exist in Third
- Search in Second if method does not exist in First
But if you try it out:
TypeError: Error when calling the metaclass bases
Cannot create a consistent method resolution
order (MRO) for bases First, Second
回答1:
To be "consistent" the MRO should satisfy these constraints:
- If a class inherits from multiple superclasses, the ones it lists earlier in the superclass list should come earlier in the MRO than the ones it lists later.
- Every class in the MRO should come before any of its superclasses.
Your proposed hierarchy does not have any possible ordering meeting these constraints. Because Third is defined to inherit from First before Second, First should come before Second in the MRO. But because Second inherits from First, Second should come before First in the MRO. This contradiction cannot be reconciled.
You can read more about the precise method Python uses to compute the MRO, which is called the C3 linearization algorithm.
来源:https://stackoverflow.com/questions/47808926/why-is-this-an-ambiguous-mro