13.11.1 __bases__类属性
# -*- coding:utf-8 -*-
# !/usr/bin/python
class P(object): # parent class 父类
'P xxxxclass'
Str1='aaaa'
def __init__(self):
# type: () -> object
print 'created an instance of',
self.__class__.__name__
class C(P): # child class 子类
Str2='bbb'
c = C() # child instance 子类实例
print c.Str2
print c.Str1
print c.__class__ # class that created us 显示 c 所属的类名
print C.__bases__ # child's parent class(es) 子类的父类
C:Python27python.exe C:/Users/TLCB/PycharmProjects/untitled/core/a23.py
created an instance of C
bbb
aaaa
<class '__main__.C'>
(<class '__main__.P'>,)
在第13.4.4 节中,我们概要地介绍了__bases__类属性,对任何(子)类,它是一个包含其父类(parent)的集合的元组。