Python Object-oriented inheritance

Source: Internet
Author: User
Tags instance method

Python does not support polymorphic

Code area:

1 classUniversitymember:2     def __init__(self, Name, age):3Self.name =name;4Self.age =Age ;5     6     #instance Method7     defGetName (self):8         returnSelf.name;9 Ten     defgetage (self): One         returnSelf.age; A  - #subclass Student class inherits parent class - classStudent (universitymember): the     def __init__(self, name, age, height): -         #Show calling Parent class construction method -Universitymember.__init__(self, name, age); -Self.height =height; +      -     defgetheight (self): +         returnSelf.height; A  at #subclass Teacher class inherits parent class - classTeacher (universitymember): -     def __init__(self, name, age, salary): -         #Show constructor method for calling parent class -Universitymember.__init__(self, name, age); -Self.salary =salary; in  -     defgetsalary (self): to         returnself.salary; +  - #Instantiate student class theStudent = Student ('STU1', 100, 158); * Print(Student.getname ());#STU1 $ Print(Student.getage ());# -Panax Notoginseng Print(Student.getheight ());#158 -  the #Instantiate teacher class +Teacher = Teacher ('tea1', 100, 99); A Print(Teacher.getname ());#tea1 the Print(Teacher.getage ());# - + Print(Teacher.getsalary ());# About

Python Object-oriented inheritance

Related Article

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.