Python Multiple Inheritance instance _python

Source: Internet
Author: User
Tags inheritance

This article is an example of Python multiple inheritance usage, shared for everyone to reference. The implementation methods are as follows:

1.mro.py files are as follows:

#!/usr/bin/python
# Filename:mro.py
 
class P1:
  def foo (self):
    print ' called P1-foo '
 
class P2:
  def foo (self):
    print ' called P2-foo '
 
  def Bar (self):
    print ' called P2-bar '
 
class C1 (P1, P2):
  Pass
 
class C2 (P1, P2):
  def Bar (self):
    print ' called C2-bar () '
 
class GC (C1, C2):
  Pass

2. The results of the implementation are as follows:

>>> from MRO import *
>>> GC = GC ()
>>> Gc.foo ()
called P1-foo
>>& Gt Gc.bar
<bound method Gc.bar of <mro. GC instance at 0xb77be2ac>>
>>> Gc.bar ()
called P2-bar
>>>

3. Conclusion:

Method interpretation Order (MRO): Depth first, left to right

I hope this article will help you with your Python programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.