Class method Demo: define and call : Class Method : Class : Python examples (example source code) Organized by topic

C++
PHP
Python


Python  »  Class   » [  Class Method  ]  Screenshots 
 



Class method Demo: define and call




class ABase(object):
    def aclassmet(cls)
       print 'a class method for', cls.__name__
    aclassmet = classmethod(aclassmet)

class ADeriv(ABase): pass


bInstance = ABase()

dInstance = ADeriv()

ABase.aclassmet()               

bInstance.aclassmet()           

ADeriv.aclassmet()              

dInstance.aclassmet()           

           
       
Related examples in the same category
1.  Define function to change member data Define function to change member data
2.  Function defined outside the class
3.  roman Number
























Home| Contact Us
Copyright 2003 - 07 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.