In (Object Oriented) programming terms, "Inheritance" is used to define a type of data (an "object") which behaves like another type of data with some additions and differences.
For example, we can define a type of data that's a piece of clothing. We can then define a pair of shoes which is like a piece of clothing, except that it has two extra pieces of information involved - a length and a width. Languages that are known as Object Oriented languages provide facilities to make such definitions easy without repeating code.
In the following piece of code (in Python), we define a piece of clothing (it's known as a base class) and then we extend it into a new class (called a subclass) which has the same code and properties as a piece of clothing, with the exception of changes that we list.
The tshirt and tights classes are also subclasses of clothing and we can make up a list of pieces of clothing (you'll see it done in the test code at the bottom) which we can then loop through reporting colour and size. As we loop through in this way, the getcolour method is INHERITED from the clothes base class in each case (i.e. it is common code) and the getsize method uses what we call POLYMORPHISM as it uses different code to return the size for different types of clothing.
class clothing:
def __init__(self,colour,weight):
self.colour=colour
self.weight=weight
def getcolour(self):
return self.colour
def getsize(self):
return "n/a"
class shoes(clothing):
def __init__(self,colour,weight,len,wid):
clothing.__init__(self,colour,weight)
self.length = len
self.width = wid
def getsize(self):
r = "Length "+str(self.length)+" and width "+self.width
return r
class tshirt(clothing):
def __init__(self,colour,weight,size):
clothing.__init__(self,colour,weight)
self.size = size
def getsize(self):
return self.size
class tights(clothing):
pass
if __name__ == "__main__":
wearing = []
wearing.append(tshirt("blue",1.0,"XL"))
wearing.append(tights("pink",0.1))
wearing.append(shoes("brown",2.0,11,"D"))
for haveon in wearing:
print "I am wearing something",haveon.getcolour(),
print " size ",haveon.getsize()
Let's run that ...
[localhost:~/ipy] graham% python dresser
I am wearing something blue size XL
I am wearing something pink size n/a
I am wearing something brown size Length 11 and width D
[localhost:~/ipy] graham%
See also
further examples and Python object training
Please note that articles in this section of our
web site were current and correct to the best of our ability when published,
but by the nature of our business may go out of date quite quickly. The
quoting of a price, contract term or any other information in this area of
our website is NOT an offer to supply now on those terms - please check
back via
our main web site
Python - Objects - Intermediate [3524] Metaclasses (Python) and Metatables (Lua) - (2011-11-17)
[3472] Static variables in functions - and better ways using objects - (2011-10-10)
[3442] A demonstration of how many Python facilities work together - (2011-09-16)
[3002] A list of special method and attribute names in Python - (2010-10-17)
[2994] Python - some common questions answered in code examples - (2010-10-10)
[2905] Defining static methods in Python - (2010-08-05)
[2889] Should Python classes each be in their own file? - (2010-07-27)
[2785] The Light bulb moment when people see how Object Orientation works in real use - (2010-05-28)
[2764] Python decorators - your own, staticmethod and classmethod - (2010-05-14)
[2722] Mixins example in Python - (2010-04-14)
[2720] Multiple inheritance in Python - complete working example - (2010-04-14)
[2717] The Multiple Inheritance Conundrum, interfaces and mixins - (2010-04-11)
[2693] Methods that run on classes (static methods) in Python - (2010-03-25)
[2485] How do I set up a constant in Python? - (2009-10-31)
[2409] TypeError: super() argument 1 must be type, not classobj (Python) - (2009-09-18)
[2368] Python - fresh examples of all the fundamentals - (2009-08-20)
[1819] Calling base class constructors - (2008-10-03)
[1661] Equality, sameness and identity - Python - (2008-05-31)
[1644] Using a utility method to construct objects of different types - Python - (2008-05-17)
[1517] Python - formatting objects - (2008-01-24)
[1217] What are factory and singleton classes? - (2007-06-04)
[1146] __new__ v __init__ - python constructor alternatives? - (2007-04-14)
[964] Practical polymorphism in action - (2006-12-04)
[903] Pieces of Python - (2006-10-23)
[831] Comparison of Object Oriented Philosophy - Python, Java, C++, Perl - (2006-08-13)
[656] Think about your design even if you don't use full UML - (2006-03-24)
[477] Class, static and unbound variables - (2005-10-25)
[383] Overloading of operators on standard objects in Python - (2005-07-19)
[296] Using a Python dictionary as a holder of object attributes - (2005-04-30)
Object Orientation and General technical topics - Object Orientation: Composite Objects [3609] How do classes relate to each other? Associated Classes - (2012-02-12)
[3251] C++ - objects that are based on other objects, saving coding and adding robustness - (2011-04-17)
[3152] Jargon busting - (2011-01-30)
[3142] Private and Public - and things between - (2011-01-22)
[2922] Getting the OO design write - with PHP a example - (2010-08-14)
[2865] Relationships between Java classes - inheritance, packaging and others - (2010-07-10)
[2641] Object Oriented Programming in PHP - (2010-02-19)
[2170] Designing a heirarcy of classes - getting inheritance right - (2009-05-11)
[1348] Screw it or Glue it? Access to Object variables - a warning - (2007-09-12)
[1345] Perl and Shell coding standards / costs of an IT project - (2007-09-11)
[592] NOT Gone phishing - (2006-02-05)
[477] Class, static and unbound variables - (2005-10-25)
resource index - Python
Solutions centre home page
You'll find shorter technical items at
The Horse's Mouth and
delegate's questions answered at
the
Opentalk forum.
At Well House Consultants, we provide
training courses on
subjects such as Ruby, Lua, Perl, Python, Linux, C, C++,
Tcl/Tk, Tomcat, PHP and MySQL. We're asked (and answer)
many questions, and answers to those which are of general
interest are published in this area of our site.