孤独的猫

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
class A():
    _a = 1

    def Afun(self):
        print 'A'

    def Common(self):
        print 'A-common'        

class A1():    
    def Common(self):
        print 'A1-common'   
        
class B(A,A1):
    _b = 2
    def Bfun(self):
        print 'B'

b = B()

b.Common()
可在http://codepad.org中进行在线调试;或http://ideone.comhttp://kodingen.com/
posted on 2011-04-26 13:54  孤独的猫  阅读(320)  评论(0编辑  收藏  举报